aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}