diff options
Diffstat (limited to 'cpp/tests/LazyLoadedContentTest.cpp')
-rw-r--r-- | cpp/tests/LazyLoadedContentTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/tests/LazyLoadedContentTest.cpp b/cpp/tests/LazyLoadedContentTest.cpp index 5a4dd34b53..4cd8e9b307 100644 --- a/cpp/tests/LazyLoadedContentTest.cpp +++ b/cpp/tests/LazyLoadedContentTest.cpp @@ -50,7 +50,7 @@ class LazyLoadedContentTest : public CppUnit::TestCase public: TestMessageStore(const string& _content) : content(_content) {} - void loadContent(Message* const, string& data, uint64_t offset, uint32_t length) + void loadContent(PersistableMessage&, string& data, uint64_t offset, uint32_t length) { if (offset + length <= content.size()) { data = content.substr(offset, length); |