Fix XCode 4 build

This commit is contained in:
Celtic Minstrel 2016-08-08 22:49:26 -04:00
parent f56feea0b8
commit 245ca6ce40

View file

@ -239,10 +239,10 @@ public:
template<typename Func>
void register_sorting_option(const int col, const Func& f)
{
set_column_order(col, {
set_column_order(col, {{
[f](int lhs, int rhs) { return f(lhs) < f(rhs); },
[f](int lhs, int rhs) { return f(lhs) > f(rhs); }
});
}});
};
protected: