thelink2012 / any

Implementation of std::experimental::any, including small object optimization, for C++11 compilers
Boost Software License 1.0
144 stars 37 forks source link

fix of swap overload. See ADL rules to overloading std::swap #22

Closed t1h0n closed 9 months ago

t1h0n commented 9 months ago

Proper std::swap overload using ADL see https://en.cppreference.com/w/cpp/algorithm/swap

thelink2012 commented 9 months ago

Thanks!