Fix XCode 4 build
This commit is contained in:
parent
f56feea0b8
commit
245ca6ce40
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue