aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-10-29 16:32:59 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-10-29 16:32:59 +0200
commit94607b822a6dcb4be1ab54dafaafde4810cb1f72 (patch)
treeaa273bb86da91c04c9d621878719f0ded5c7c585
parent783f9b0587e00d2aeb1fbfcecca39cc6e1dee9c6 (diff)
Don't use boolean as identifier2.2.0.a1
Some headers/systems defined it as a macro.
-rw-r--r--odb/mssql/query.cxx23
-rw-r--r--odb/mssql/query.hxx16
2 files changed, 20 insertions, 19 deletions
diff --git a/odb/mssql/query.cxx b/odb/mssql/query.cxx
index a40bb23..bea3352 100644
--- a/odb/mssql/query.cxx
+++ b/odb/mssql/query.cxx
@@ -87,7 +87,8 @@ namespace odb
void query_base::
append (const string& q)
{
- if (!clause_.empty () && clause_.back ().kind == clause_part::native)
+ if (!clause_.empty () &&
+ clause_.back ().kind == clause_part::kind_native)
{
string& s (clause_.back ().part);
@@ -104,7 +105,7 @@ namespace odb
s += q;
}
else
- clause_.push_back (clause_part (clause_part::native, q));
+ clause_.push_back (clause_part (clause_part::kind_native, q));
}
void query_base::
@@ -114,13 +115,13 @@ namespace odb
s += '.';
s += column;
- clause_.push_back (clause_part (clause_part::column, s));
+ clause_.push_back (clause_part (clause_part::kind_column, s));
}
void query_base::
add (details::shared_ptr<query_param> p, const char* conv)
{
- clause_.push_back (clause_part (clause_part::param));
+ clause_.push_back (clause_part (clause_part::kind_param));
if (conv != 0)
clause_.back ().part = conv;
@@ -199,12 +200,12 @@ namespace odb
//
clause_type::iterator i (clause_.begin ()), e (clause_.end ());
- if (i != e && i->kind == clause_part::boolean && i->bool_part)
+ if (i != e && i->kind == clause_part::kind_bool && i->bool_part)
{
clause_type::iterator j (i + 1);
if (j == e ||
- (j->kind == clause_part::native && check_prefix (j->part)))
+ (j->kind == clause_part::kind_native && check_prefix (j->part)))
clause_.erase (i);
}
}
@@ -216,7 +217,7 @@ namespace odb
{
const clause_part& p (clause_.front ());
- if (p.kind == clause_part::native && check_prefix (p.part))
+ if (p.kind == clause_part::kind_native && check_prefix (p.part))
return "";
return "WHERE ";
@@ -239,7 +240,7 @@ namespace odb
switch (i->kind)
{
- case clause_part::column:
+ case clause_part::kind_column:
{
if (last != ' ' && last != '(')
r += ' ';
@@ -247,7 +248,7 @@ namespace odb
r += i->part;
break;
}
- case clause_part::param:
+ case clause_part::kind_param:
{
if (last != ' ' && last != '(')
r += ' ';
@@ -268,7 +269,7 @@ namespace odb
break;
}
- case clause_part::native:
+ case clause_part::kind_native:
{
// We don't want extra spaces after '(' as well as before ','
// and ')'.
@@ -283,7 +284,7 @@ namespace odb
r += p;
break;
}
- case clause_part::boolean:
+ case clause_part::kind_bool:
{
if (last != ' ' && last != '(')
r += ' ';
diff --git a/odb/mssql/query.hxx b/odb/mssql/query.hxx
index 8b470b4..c0788a6 100644
--- a/odb/mssql/query.hxx
+++ b/odb/mssql/query.hxx
@@ -111,15 +111,15 @@ namespace odb
{
enum kind_type
{
- column,
- param,
- native,
- boolean
+ kind_column,
+ kind_param,
+ kind_native,
+ kind_bool
};
clause_part (kind_type k): kind (k) {}
clause_part (kind_type k, const std::string& p): kind (k), part (p) {}
- clause_part (bool p): kind (boolean), bool_part (p) {}
+ clause_part (bool p): kind (kind_bool), bool_part (p) {}
kind_type kind;
std::string part; // If kind is param, then part is conversion expr.
@@ -144,14 +144,14 @@ namespace odb
query_base (const char* native)
: binding_ (0, 0)
{
- clause_.push_back (clause_part (clause_part::native, native));
+ clause_.push_back (clause_part (clause_part::kind_native, native));
}
explicit
query_base (const std::string& native)
: binding_ (0, 0)
{
- clause_.push_back (clause_part (clause_part::native, native));
+ clause_.push_back (clause_part (clause_part::kind_native, native));
}
query_base (const char* table, const char* column)
@@ -214,7 +214,7 @@ namespace odb
const_true () const
{
return clause_.size () == 1 &&
- clause_.front ().kind == clause_part::boolean &&
+ clause_.front ().kind == clause_part::kind_bool &&
clause_.front ().bool_part;
}