Fix #59 again (missing BOOST_MOVE_STD_NS_END closing brace)

This commit is contained in:
Ion Gaztañaga
2025-02-28 19:32:21 +01:00
parent 5f073f8f00
commit e9ff3ca095

View File

@ -9,7 +9,9 @@
#//
#//////////////////////////////////////////////////////////////////////////////
#
#include <boost/config.hpp>
#ifndef BOOST_CONFIG_HPP
# include <boost/config.hpp>
#endif
#if defined(_LIBCPP_VERSION)
#if defined(__clang__)
#define BOOST_MOVE_STD_NS_GCC_DIAGNOSTIC_PUSH
@ -28,8 +30,8 @@
#define BOOST_MOVE_STD_NS_BEG _STD_BEGIN
#define BOOST_MOVE_STD_NS_END _STD_END
#else
#define BOOST_MOVE_STD_NS_BEG namespace std{
#define BOOST_MOVE_STD_NS_END
#define BOOST_MOVE_STD_NS_BEG namespace std {
#define BOOST_MOVE_STD_NS_END }
#endif
#if defined(_MSC_VER) && (_MSC_VER >= 1915)