unused.hpp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*=============================================================================
  2. Copyright (c) 2001-2011 Joel de Guzman
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. ==============================================================================*/
  6. #if !defined(BOOST_FUSION_SUPPORT_UNUSED_20070305_1038)
  7. #define BOOST_FUSION_SUPPORT_UNUSED_20070305_1038
  8. #include <boost/fusion/support/config.hpp>
  9. #include <iosfwd>
  10. #include <boost/config.hpp>
  11. #if defined(BOOST_MSVC)
  12. # pragma warning(push)
  13. # pragma warning(disable: 4522) // multiple assignment operators specified warning
  14. #endif
  15. #define BOOST_FUSION_UNUSED_HAS_IO
  16. namespace boost { namespace fusion
  17. {
  18. struct unused_type
  19. {
  20. BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
  21. unused_type() BOOST_NOEXCEPT
  22. {
  23. }
  24. template <typename T>
  25. BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
  26. unused_type(T const&) BOOST_NOEXCEPT
  27. {
  28. }
  29. template <typename T>
  30. BOOST_FUSION_CONSTEXPR_THIS BOOST_FUSION_GPU_ENABLED
  31. unused_type const&
  32. operator=(T const&) const BOOST_NOEXCEPT
  33. {
  34. return *this;
  35. }
  36. template <typename T>
  37. BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
  38. unused_type&
  39. operator=(T const&) BOOST_NOEXCEPT
  40. {
  41. return *this;
  42. }
  43. BOOST_FUSION_CONSTEXPR_THIS BOOST_FUSION_GPU_ENABLED
  44. unused_type const&
  45. operator=(unused_type const&) const BOOST_NOEXCEPT
  46. {
  47. return *this;
  48. }
  49. BOOST_CXX14_CONSTEXPR BOOST_FUSION_GPU_ENABLED
  50. unused_type&
  51. operator=(unused_type const&) BOOST_NOEXCEPT
  52. {
  53. return *this;
  54. }
  55. };
  56. BOOST_CONSTEXPR_OR_CONST unused_type unused = unused_type();
  57. namespace detail
  58. {
  59. struct unused_only
  60. {
  61. BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
  62. unused_only(unused_type const&) BOOST_NOEXCEPT {}
  63. };
  64. }
  65. BOOST_CONSTEXPR
  66. inline std::ostream& operator<<(std::ostream& out, detail::unused_only const&) BOOST_NOEXCEPT
  67. {
  68. return out;
  69. }
  70. BOOST_CONSTEXPR
  71. inline std::istream& operator>>(std::istream& in, unused_type&) BOOST_NOEXCEPT
  72. {
  73. return in;
  74. }
  75. }}
  76. #if defined(BOOST_MSVC)
  77. # pragma warning(pop)
  78. #endif
  79. #endif