fp_operations.hpp 807 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * Copyright (c) 2018 Andrey Semashev
  7. */
  8. /*!
  9. * \file atomic/detail/fp_operations.hpp
  10. *
  11. * This header defines floating point atomic operations, including the generic version.
  12. */
  13. #ifndef BOOST_ATOMIC_DETAIL_FP_OPERATIONS_HPP_INCLUDED_
  14. #define BOOST_ATOMIC_DETAIL_FP_OPERATIONS_HPP_INCLUDED_
  15. #include <boost/atomic/detail/fp_ops_generic.hpp>
  16. #include <boost/atomic/detail/fp_ops_emulated.hpp>
  17. #if !defined(BOOST_ATOMIC_DETAIL_FP_BACKEND_GENERIC)
  18. #include BOOST_ATOMIC_DETAIL_FP_BACKEND_HEADER(boost/atomic/detail/fp_ops_)
  19. #endif
  20. #ifdef BOOST_HAS_PRAGMA_ONCE
  21. #pragma once
  22. #endif
  23. #endif // BOOST_ATOMIC_DETAIL_FP_OPERATIONS_HPP_INCLUDED_