diff options
author | Paul Baltescu <pauldb89@gmail.com> | 2013-06-25 15:13:30 +0100 |
---|---|---|
committer | Paul Baltescu <pauldb89@gmail.com> | 2013-06-25 15:13:30 +0100 |
commit | cd4dbb5c0b581efb0369330ea330f2b473628a96 (patch) | |
tree | b6d41b64b75100954cccdd3ef2f4035e2c7fa837 /extractor/mocks/mock_precomputation.h | |
parent | 5794c0109902cf19a52cc8f1799353270ed9d85d (diff) |
Reduce memory used by precomputation.
Diffstat (limited to 'extractor/mocks/mock_precomputation.h')
-rw-r--r-- | extractor/mocks/mock_precomputation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extractor/mocks/mock_precomputation.h b/extractor/mocks/mock_precomputation.h index 8753343e..86f4ce27 100644 --- a/extractor/mocks/mock_precomputation.h +++ b/extractor/mocks/mock_precomputation.h @@ -6,7 +6,7 @@ namespace extractor { class MockPrecomputation : public Precomputation { public: - MOCK_CONST_METHOD0(GetCollocations, const Index&()); + MOCK_CONST_METHOD0(GetCollocations, Collocations()); }; } // namespace extractor |