mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 02:45:02 +02:00
Remove std::swap<Json::Value> in favor of ADL
Comply with http://en.cppreference.com/w/cpp/concept/Swappable Don't open namespace std.
This commit is contained in:
parent
3e2b8ea9cc
commit
1d95628ba8
@ -880,15 +880,10 @@ public:
|
|||||||
pointer operator->() const { return &deref(); }
|
pointer operator->() const { return &deref(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline void swap(Value& a, Value& b) { a.swap(b); }
|
||||||
|
|
||||||
} // namespace Json
|
} // namespace Json
|
||||||
|
|
||||||
|
|
||||||
namespace std {
|
|
||||||
/// Specialize std::swap() for Json::Value.
|
|
||||||
template<>
|
|
||||||
inline void swap(Json::Value& a, Json::Value& b) { a.swap(b); }
|
|
||||||
}
|
|
||||||
|
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
|
||||||
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user