diff options
author | 2014-11-03 23:38:55 +0000 | |
---|---|---|
committer | 2014-11-03 23:38:56 +0000 | |
commit | f7ffcaa7a478eaafc121e84b14dcaf2503dd5457 (patch) | |
tree | 360be2dca990e9d244fc92529ec8d53266ed6d7f /tools/split-select/Main.cpp | |
parent | 668f0a356cba44c22d8ca0c9f4711613885d46a9 (diff) | |
parent | c3dc0b57b8d0b3875f868788e110aa67fb032b4a (diff) |
Merge "Build the split-select tool without C++11 support" into lmp-mr1-dev
Diffstat (limited to 'tools/split-select/Main.cpp')
-rw-r--r-- | tools/split-select/Main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/split-select/Main.cpp b/tools/split-select/Main.cpp index d6251c3c1511..434494ead3a8 100644 --- a/tools/split-select/Main.cpp +++ b/tools/split-select/Main.cpp @@ -63,7 +63,7 @@ static void help() { class SplitSelector { public: - SplitSelector() = default; + SplitSelector(); SplitSelector(const Vector<SplitDescription>& splits); Vector<SplitDescription> getBestSplits(const SplitDescription& target) const; @@ -75,6 +75,9 @@ private: Vector<SortedVector<SplitDescription> > mGroups; }; +SplitSelector::SplitSelector() { +} + SplitSelector::SplitSelector(const Vector<SplitDescription>& splits) : mGroups(groupByMutualExclusivity(splits)) { } |