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:
rbock
2014-08-27 20:43:09 +02:00
parent a514e6bf5e
commit 4ac4b1820b
53 changed files with 190 additions and 190 deletions
+1 -1
View File
@@ -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");