summaryrefslogtreecommitdiff
path: root/odb/semantics/class.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-02 22:21:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-02 22:21:11 +0200
commit7d1a8bc0e5011dd2b391608a207cf436b388576e (patch)
tree56776c5bad19249e958d298439f7d21489ed28c0 /odb/semantics/class.hxx
parent2b02d443ab344bc02dfc2891fb1a57c6520c393f (diff)
Move constructors to the source files
This is done so that when the plugin is built as a static library, the object files with type information get pulled in.
Diffstat (limited to 'odb/semantics/class.hxx')
-rw-r--r--odb/semantics/class.hxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/odb/semantics/class.hxx b/odb/semantics/class.hxx
index bb5dec3..72dcfea 100644
--- a/odb/semantics/class.hxx
+++ b/odb/semantics/class.hxx
@@ -43,10 +43,7 @@ namespace semantics
}
public:
- inherits (access_type access, bool virt)
- : virt_ (virt), access_ (access)
- {
- }
+ inherits (access_type, bool virt);
void
set_left_node (class_& n)
@@ -91,10 +88,7 @@ namespace semantics
}
public:
- class_ (path const& file, size_t line, size_t column, tree tn)
- : node (file, line, column), type (tn)
- {
- }
+ class_ (path const&, size_t line, size_t column, tree);
void
add_edge_left (inherits& e)