summaryrefslogtreecommitdiff
path: root/odb
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-10-20 20:45:11 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-10-21 11:47:15 +0200
commitbdf1df065820d84747f9b183306d30a55c60f98f (patch)
tree5b39eee532995ca08636bdf87d8d4e1dd2844667 /odb
parent97f3e64586a6758161763a33a03d5cc09171219f (diff)
Correct auto_id flag generation
Diffstat (limited to 'odb')
-rw-r--r--odb/relational/header.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/relational/header.hxx b/odb/relational/header.hxx
index 2416f04..49a796f 100644
--- a/odb/relational/header.hxx
+++ b/odb/relational/header.hxx
@@ -975,7 +975,7 @@ namespace relational
" id_type;"
<< endl
<< "static const bool auto_id = " <<
- (auto_id ? "true;" : "false;")
+ (auto_id ? "true" : "false") << ";"
<< endl;
os << "struct id_image_type"