attribute.hpp 428 B

1234567891011121314151617
  1. // Copyright 2018 Hans Dembinski
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt
  5. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_HISTOGRAM_DETAIL_ATTRIBUTE_HPP
  7. #define BOOST_HISTOGRAM_DETAIL_ATTRIBUTE_HPP
  8. #if __cplusplus >= 201703L
  9. #define BOOST_HISTOGRAM_DETAIL_NODISCARD [[nodiscard]]
  10. #else
  11. #define BOOST_HISTOGRAM_DETAIL_NODISCARD
  12. #endif
  13. #endif