aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/statement.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-02-07 15:39:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-02-07 15:39:52 +0200
commit268a81f341c6b3d4e69766711f9f1487686dccb4 (patch)
treef72e5bf6f051becebbefaf50e028ae6475163e98 /odb/pgsql/statement.cxx
parent896e25ffb698431e07dd787783642404840b2171 (diff)
Rename boolean to boolean_ (macro clash)
Diffstat (limited to 'odb/pgsql/statement.cxx')
-rw-r--r--odb/pgsql/statement.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/pgsql/statement.cxx b/odb/pgsql/statement.cxx
index d522dfa..3aed485 100644
--- a/odb/pgsql/statement.cxx
+++ b/odb/pgsql/statement.cxx
@@ -191,7 +191,7 @@ namespace odb
switch (current_bind.type)
{
- case bind::boolean:
+ case bind::boolean_:
{
l = sizeof (bool);
break;
@@ -295,7 +295,7 @@ namespace odb
switch (b.type)
{
- case bind::boolean:
+ case bind::boolean_:
{
*static_cast<bool*> (b.buffer) =
*reinterpret_cast<const bool*> (v);