aboutsummaryrefslogtreecommitdiff
path: root/odb/context.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/context.hxx')
-rw-r--r--odb/context.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index 7032dcf..002ee6e 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -1343,12 +1343,12 @@ public:
//
struct column_prefix
{
- column_prefix (): derived (false) {}
+ column_prefix (): derived (false), underscore (false) {}
column_prefix (semantics::data_member& m,
string const& key_prefix = string (),
string const& default_name = string ())
- : derived (false)
+ : derived (false), underscore (false)
{
append (m, key_prefix, default_name);
}
@@ -1368,6 +1368,7 @@ public:
string prefix;
bool derived; // One of the components in the prefix was derived.
+ bool underscore; // Trailing underscore was automatically added.
};
string