summaryrefslogtreecommitdiff
path: root/odb/relational/header.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-10 09:10:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-21 15:39:59 +0200
commitdcb7bcd541f77b280e5733da9ec1eb24574e0d9e (patch)
treee39b99a1dfa9db4fbbac02462923523e3de331a9 /odb/relational/header.hxx
parent7ae497743c7b042904fe1f6b4153ab3f4763ff2b (diff)
Add default_ctor() to semantics::class_
Use it in the code generators instead of calling the GCC AST macro.
Diffstat (limited to 'odb/relational/header.hxx')
-rw-r--r--odb/relational/header.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/odb/relational/header.hxx b/odb/relational/header.hxx
index 12a587d..9394f21 100644
--- a/odb/relational/header.hxx
+++ b/odb/relational/header.hxx
@@ -6,8 +6,6 @@
#ifndef ODB_RELATIONAL_HEADER_HXX
#define ODB_RELATIONAL_HEADER_HXX
-#include <odb/gcc.hxx> //@@ ??
-
#include <odb/relational/context.hxx>
#include <odb/relational/common.hxx>
@@ -601,7 +599,6 @@ namespace relational
traverse_object (type& c)
{
string const& type (c.fq_name ());
- bool def_ctor (TYPE_HAS_DEFAULT_CONSTRUCTOR (c.tree_node ()));
semantics::data_member& id (id_member (c));
bool auto_id (id.count ("auto"));
@@ -772,7 +769,7 @@ namespace relational
// find ()
//
- if (def_ctor)
+ if (c.default_ctor ())
os << "static pointer_type" << endl
<< "find (database&, const id_type&);"
<< endl;