1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-13 04:17:11 +02:00

Update POCO library.

This commit is contained in:
Sandu Liviu Catalin
2023-03-23 20:19:11 +02:00
parent 8d15f4b6e9
commit 233fc103f9
2521 changed files with 257092 additions and 72789 deletions

View File

@ -194,7 +194,7 @@ public:
return assign<Other>(ptr);
}
void swap(AutoPtr& ptr)
void swap(AutoPtr& ptr) noexcept
{
std::swap(_ptr, ptr._ptr);
}
@ -398,7 +398,7 @@ private:
template <class C>
inline void swap(AutoPtr<C>& p1, AutoPtr<C>& p2)
inline void swap(AutoPtr<C>& p1, AutoPtr<C>& p2) noexcept
{
p1.swap(p2);
}