summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/changeset.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/relational/changeset.cxx')
-rw-r--r--odb/semantics/relational/changeset.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/odb/semantics/relational/changeset.cxx b/odb/semantics/relational/changeset.cxx
index fd5a17f..669394f 100644
--- a/odb/semantics/relational/changeset.cxx
+++ b/odb/semantics/relational/changeset.cxx
@@ -13,14 +13,16 @@ namespace semantics
changeset::
changeset (changeset const& c, qscope& b, graph& g)
: qscope (c, &b, g),
- version_ (c.version_)
+ version_ (c.version_),
+ alters_model_ (0)
{
}
changeset::
changeset (xml::parser& p, qscope& b, graph& g)
: qscope (p, &b, g),
- version_ (p.attribute<version_type> ("version"))
+ version_ (p.attribute<version_type> ("version")),
+ alters_model_ (0)
{
}