aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/inline.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2014-08-29 12:06:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2014-08-29 12:06:46 +0200
commitb6f6e4cbbff4681550b3b163b5d4ab2c3ba44819 (patch)
tree9d1f712ad9b72e74841422eccc08caef039c68b3 /odb/relational/inline.hxx
parent6e2325337ff31a3b3c5b2ab2e74352e1765d2daa (diff)
Pass non-const image to clone_image(), copy_image()
This is necessary since some databases need to steal stuff from the original image (e.g., LOB descriptors in Oracle).
Diffstat (limited to 'odb/relational/inline.hxx')
-rw-r--r--odb/relational/inline.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/relational/inline.hxx b/odb/relational/inline.hxx
index d1a4393..ed10e09 100644
--- a/odb/relational/inline.hxx
+++ b/odb/relational/inline.hxx
@@ -510,7 +510,7 @@ namespace relational
os << "inline" << endl
<< traits << "::image_type*" << endl
<< traits << "::" << endl
- << "clone_image (const image_type& i)"
+ << "clone_image (image_type& i)"
<< "{";
if (poly_derived)
@@ -528,7 +528,7 @@ namespace relational
//
os << "inline" << endl
<< "void " << traits << "::" << endl
- << "copy_image (image_type& d, const image_type& s)"
+ << "copy_image (image_type& d, image_type& s)"
<< "{";
if (poly_derived)