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 | 9a0a9582d38315fd83628112144077b35b5f1367 (patch) | |
tree | 27267f38981291742665f08e64204eb9b42671ef /extractor/mocks | |
parent | 23e89686849d290e8b64875a0bdf77cbdb70d2df (diff) |
Reduce memory used by precomputation.
Diffstat (limited to 'extractor/mocks')
-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 |