swap.hpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright (C) 2007, 2008 Steven Watanabe, Joseph Gauterin, Niels Dekker
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // For more information, see http://www.boost.org
  7. #ifndef BOOST_UTILITY_SWAP_HPP
  8. #define BOOST_UTILITY_SWAP_HPP
  9. // Note: the implementation of this utility contains various workarounds:
  10. // - swap_impl is put outside the boost namespace, to avoid infinite
  11. // recursion (causing stack overflow) when swapping objects of a primitive
  12. // type.
  13. // - swap_impl has a using-directive, rather than a using-declaration,
  14. // because some compilers (including MSVC 7.1, Borland 5.9.3, and
  15. // Intel 8.1) don't do argument-dependent lookup when it has a
  16. // using-declaration instead.
  17. // - boost::swap has two template arguments, instead of one, to
  18. // avoid ambiguity when swapping objects of a Boost type that does
  19. // not have its own boost::swap overload.
  20. #include <algorithm> //for std::swap
  21. #include <cstddef> //for std::size_t
  22. namespace boost_swap_impl
  23. {
  24. template<class T>
  25. void swap_impl(T& left, T& right)
  26. {
  27. using namespace std;//use std::swap if argument dependent lookup fails
  28. swap(left,right);
  29. }
  30. template<class T, std::size_t N>
  31. void swap_impl(T (& left)[N], T (& right)[N])
  32. {
  33. for (std::size_t i = 0; i < N; ++i)
  34. {
  35. ::boost_swap_impl::swap_impl(left[i], right[i]);
  36. }
  37. }
  38. }
  39. namespace boost
  40. {
  41. template<class T1, class T2>
  42. void swap(T1& left, T2& right)
  43. {
  44. ::boost_swap_impl::swap_impl(left, right);
  45. }
  46. }
  47. #endif