aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-28 17:33:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-28 17:33:12 +0200
commitae0dab024182275dfb6f66b4060cad92c8f8a934 (patch)
treed4d3baa156bbbc3378fa7d39e19a9acb1b37ece6
parenteb307728d99d5985430dc8f83331859e28fd6ff5 (diff)
GCC 4.7 compatibility fixes
-rw-r--r--odb/oracle/auto-descriptor.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/oracle/auto-descriptor.hxx b/odb/oracle/auto-descriptor.hxx
index 741eed4..b5a7fcb 100644
--- a/odb/oracle/auto-descriptor.hxx
+++ b/odb/oracle/auto-descriptor.hxx
@@ -84,7 +84,7 @@ namespace odb
~auto_descriptor ()
{
if (d_ != 0)
- release (d_);
+ this->release (d_);
}
operator D* () const
@@ -108,7 +108,7 @@ namespace odb
reset (D* d = 0)
{
if (d_ != 0)
- release (d_);
+ this->release (d_);
d_ = d;
}