aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-18 15:46:39 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-18 15:46:39 +0200
commit61f3b4cb0041f36cd2d9f167a9553f4ef2722819 (patch)
tree74745fb12c62658476dd0745b41bbf040c121703
parent881f4bca6ce2684b9a60f1462be0e8a88c47219a (diff)
Misc fixes
-rw-r--r--libxsde/xsde/cxx/hybrid/any-type.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/libxsde/xsde/cxx/hybrid/any-type.cxx b/libxsde/xsde/cxx/hybrid/any-type.cxx
index 544e11b..9846fdd 100644
--- a/libxsde/xsde/cxx/hybrid/any-type.cxx
+++ b/libxsde/xsde/cxx/hybrid/any-type.cxx
@@ -123,13 +123,13 @@ namespace xsde
return true;
}
- bool
- _copy (any_type&) const
+ bool any_type::
+ _copy (any_type& c) const
{
if (data_ != 0)
{
if (!c.allocate_custom_data () ||
- !data_.copy (c.custom_data ()))
+ !data_->copy (c.custom_data ()))
return false;
}