mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fixed a few superflous semicolons
This commit is contained in:
parent
7e36281e5d
commit
f50500ba8b
@ -211,7 +211,7 @@ namespace sqlpp
|
||||
static_assert(not detail::has_duplicates<Expressions...>::value, "at least one duplicate argument detected in group_by()");
|
||||
|
||||
return { static_cast<const derived_statement_t<Policies>&>(*this), group_by_data_t<Database, Expressions...>{expressions...} };
|
||||
};
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -211,7 +211,7 @@ namespace sqlpp
|
||||
static_assert(not detail::has_duplicates<Expressions...>::value, "at least one duplicate argument detected in order_by()");
|
||||
|
||||
return { static_cast<const derived_statement_t<Policies>&>(*this), order_by_data_t<Database, Expressions...>{expressions...} };
|
||||
};
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -190,7 +190,7 @@ namespace sqlpp
|
||||
static void _()
|
||||
{
|
||||
static_assert(wrong_t<T>::value, "where expression required, e.g. where(true)");
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
// NO WHERE YET
|
||||
|
Loading…
Reference in New Issue
Block a user