summaryrefslogtreecommitdiff
path: root/src/mongo/db/sorter/sorter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/sorter/sorter.h')
-rw-r--r--src/mongo/db/sorter/sorter.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/sorter/sorter.h b/src/mongo/db/sorter/sorter.h
index ba6f3e3192f..54f19dd0197 100644
--- a/src/mongo/db/sorter/sorter.h
+++ b/src/mongo/db/sorter/sorter.h
@@ -159,7 +159,8 @@ public:
typedef std::pair<Key, Value> Data;
typedef SortIteratorInterface<Key, Value> Iterator;
typedef std::pair<typename Key::SorterDeserializeSettings,
- typename Value::SorterDeserializeSettings> Settings;
+ typename Value::SorterDeserializeSettings>
+ Settings;
template <typename Comparator>
static Sorter* make(const SortOptions& opts,
@@ -187,7 +188,8 @@ class SortedFileWriter {
public:
typedef SortIteratorInterface<Key, Value> Iterator;
typedef std::pair<typename Key::SorterDeserializeSettings,
- typename Value::SorterDeserializeSettings> Settings;
+ typename Value::SorterDeserializeSettings>
+ Settings;
explicit SortedFileWriter(const SortOptions& opts, const Settings& settings = Settings());