mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-05-04 09:59:10 -05:00
Removed stray sqlpp namespace qualifiers
The usage was very inconsistent. Also, I just saw that the current VC++ cannot deal with qualifiers in combination with template aliases
This commit is contained in:
@@ -38,7 +38,7 @@ namespace sqlpp
|
||||
public expression_operators<like_t<Operand, Pattern>, boolean>,
|
||||
public alias_operators<like_t<Operand, Pattern>>
|
||||
{
|
||||
using _traits = make_traits<boolean, ::sqlpp::tag::is_expression, ::sqlpp::tag::is_named_expression>;
|
||||
using _traits = make_traits<boolean, tag::is_expression, tag::is_named_expression>;
|
||||
using _recursive_traits = make_recursive_traits<Operand, Pattern>;
|
||||
|
||||
static_assert(is_text_t<Operand>::value, "Operand for like() has to be a text");
|
||||
|
||||
Reference in New Issue
Block a user