Rewrote like() member function, added more type control to concat()

This commit is contained in:
Roland Bock
2013-09-19 09:04:07 +02:00
parent 1ab504f908
commit 0db405c28c
4 changed files with 111 additions and 23 deletions

View File

@@ -276,6 +276,7 @@ int main()
!t.gamma;
t.beta < "kaesekuchen";
(t.beta + "hallenhalma").serialize(std::cerr, db);
concat(t.beta, "hallenhalma").serialize(std::cerr, db);
static_assert(sqlpp::must_not_insert_t<decltype(t.alpha)>::value, "alpha must not be inserted");
t.alpha.serialize(std::cerr, db);
std::cerr << "\n" << sizeof(TabSample) << std::endl;