aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-09 09:53:20 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-09 09:53:20 +0200
commitf019ffacf693506325cfcaccaaa9f4e7bc11d812 (patch)
tree49f3073e5f1e7dbd8b108606ed0bf7092911d1e9
parentd3a1c61c2c10d952c7a186d367b42a1ea1b3e946 (diff)
Avoid infinite recursion
-rw-r--r--odb/mysql/query.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/odb/mysql/query.hxx b/odb/mysql/query.hxx
index 4e0320f..99d9d38 100644
--- a/odb/mysql/query.hxx
+++ b/odb/mysql/query.hxx
@@ -414,7 +414,7 @@ namespace odb
equal (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return equal<T> (c);
+ return equal (c);
}
query
@@ -499,7 +499,7 @@ namespace odb
unequal (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return unequal<T> (c);
+ return unequal (c);
}
query
@@ -584,7 +584,7 @@ namespace odb
less (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return less<T> (c);
+ return less (c);
}
query
@@ -669,7 +669,7 @@ namespace odb
greater (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return greater<T> (c);
+ return greater (c);
}
query
@@ -754,7 +754,7 @@ namespace odb
less_equal (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return less_equal<T> (c);
+ return less_equal (c);
}
query
@@ -839,7 +839,7 @@ namespace odb
greater_equal (val_bind<T2> v) const
{
copy_bind<T, T2> c (v.val);
- return greater_equal<T> (c);
+ return greater_equal (c);
}
query