diff options
Diffstat (limited to 'src/mongo/db/sorter/sorter_test.cpp')
| -rw-r--r-- | src/mongo/db/sorter/sorter_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/sorter/sorter_test.cpp b/src/mongo/db/sorter/sorter_test.cpp index 531a217a41e..328dcd256c1 100644 --- a/src/mongo/db/sorter/sorter_test.cpp +++ b/src/mongo/db/sorter/sorter_test.cpp @@ -1037,7 +1037,7 @@ public: Key operator()(Key k, const Doc&) const { return k - 10; } - Document serialize() const { + Document serialize(const SerializationOptions& opts = {}) const { MONGO_UNREACHABLE; } }; @@ -1045,7 +1045,7 @@ public: Key operator()(Key k, const Doc&) const { return k + 10; } - Document serialize() const { + Document serialize(const SerializationOptions& opts = {}) const { MONGO_UNREACHABLE; } }; |
