removed namespace vendor

This commit is contained in:
rbock
2014-06-14 07:43:27 +02:00
parent 060d59125c
commit 09d220541e
80 changed files with 195 additions and 441 deletions

View File

@@ -34,8 +34,6 @@
namespace sqlpp
{
namespace vendor
{
template<bool NotInverted, typename Operand, typename... Args>
struct in_t: public boolean::template expression_operators<in_t<NotInverted, Operand, Args...>>,
public alias_operators<in_t<NotInverted, Operand, Args...>>
@@ -72,9 +70,9 @@ namespace sqlpp
};
template<typename Context, bool NotInverted, typename Operand, typename... Args>
struct serializer_t<Context, vendor::in_t<NotInverted, Operand, Args...>>
struct serializer_t<Context, in_t<NotInverted, Operand, Args...>>
{
using T = vendor::in_t<NotInverted, Operand, Args...>;
using T = in_t<NotInverted, Operand, Args...>;
static Context& _(const T& t, Context& context)
{
@@ -85,7 +83,6 @@ namespace sqlpp
return context;
}
};
}
}