From 61f3b4cb0041f36cd2d9f167a9553f4ef2722819 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 18 Oct 2010 15:46:39 +0200 Subject: Misc fixes --- libxsde/xsde/cxx/hybrid/any-type.cxx | 6 +++--- 1 file 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; } -- cgit v1.1