Removed "using std::swap" directive from nested namespace

IBM XLC refuses to compile since it tries to instantiate all the possible
specializations for std::swap, right before one.
This commit is contained in:
Mathäus Mendel
2016-03-07 16:33:59 -03:00
parent d67c9ea6f2
commit 5f94a74886

View File

@@ -139,7 +139,6 @@ inline bool VarIterator::operator != (const VarIterator& other) const
namespace std namespace std
{ {
using std::swap;
template<> template<>
inline void swap<Poco::Dynamic::VarIterator>(Poco::Dynamic::VarIterator& s1, inline void swap<Poco::Dynamic::VarIterator>(Poco::Dynamic::VarIterator& s1,
Poco::Dynamic::VarIterator& s2) Poco::Dynamic::VarIterator& s2)