summaryrefslogtreecommitdiff
path: root/config_complex_types_1/Config_Handlers/Utils/XercesString.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config_complex_types_1/Config_Handlers/Utils/XercesString.cpp')
-rw-r--r--config_complex_types_1/Config_Handlers/Utils/XercesString.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/config_complex_types_1/Config_Handlers/Utils/XercesString.cpp b/config_complex_types_1/Config_Handlers/Utils/XercesString.cpp
index db3e704caa5..6f034163e4b 100644
--- a/config_complex_types_1/Config_Handlers/Utils/XercesString.cpp
+++ b/config_complex_types_1/Config_Handlers/Utils/XercesString.cpp
@@ -1,6 +1,7 @@
// $Id$
#include <ostream>
+#include <algorithm>
#include "XercesString.h"
using xercesc::XMLString;
@@ -39,7 +40,7 @@ namespace Config_Handlers
if (&rhs == this)
return *this;
XStr temp (rhs);
- ACE_Swap<XMLCh*>::swap (this->_wstr, temp._wstr);
+ std::swap (this->_wstr, temp._wstr);
return *this;
}