diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-28 17:33:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-04-28 17:33:12 +0200 |
commit | ae0dab024182275dfb6f66b4060cad92c8f8a934 (patch) | |
tree | d4d3baa156bbbc3378fa7d39e19a9acb1b37ece6 | |
parent | eb307728d99d5985430dc8f83331859e28fd6ff5 (diff) |
GCC 4.7 compatibility fixes
-rw-r--r-- | odb/oracle/auto-descriptor.hxx | 4 |
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; } |