diff options
-rw-r--r-- | odb/mysql/makefile | 1 | ||||
-rw-r--r-- | odb/mysql/query-const-expr.cxx | 16 | ||||
-rw-r--r-- | odb/mysql/query.cxx | 2 |
3 files changed, 17 insertions, 2 deletions
diff --git a/odb/mysql/makefile b/odb/mysql/makefile index 19affbd..9644536 100644 --- a/odb/mysql/makefile +++ b/odb/mysql/makefile @@ -14,6 +14,7 @@ error.cxx \ exceptions.cxx \ object-statements.cxx \ query.cxx \ +query-const-expr.cxx \ statement.cxx \ statements-base.cxx \ transaction.cxx \ diff --git a/odb/mysql/query-const-expr.cxx b/odb/mysql/query-const-expr.cxx new file mode 100644 index 0000000..55daa23 --- /dev/null +++ b/odb/mysql/query-const-expr.cxx @@ -0,0 +1,16 @@ +// file : odb/mysql/query-const-expr.cxx +// author : Boris Kolpackov <boris@codesynthesis.com> +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include <odb/mysql/query.hxx> + +namespace odb +{ + namespace mysql + { + // Sun CC cannot handle this in query.cxx. + // + const query query::true_expr (true); + } +} diff --git a/odb/mysql/query.cxx b/odb/mysql/query.cxx index 57ebc11..b313b0e 100644 --- a/odb/mysql/query.cxx +++ b/odb/mysql/query.cxx @@ -23,8 +23,6 @@ namespace odb // query // - const query query::true_expr (true); - query:: query (const query& q) : clause_ (q.clause_), |