From bdf1df065820d84747f9b183306d30a55c60f98f Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Thu, 20 Oct 2011 20:45:11 +0200 Subject: Correct auto_id flag generation --- odb/relational/header.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'odb/relational') 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" -- cgit v1.1