You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MSVC build fails with the following error if -DBOOST_COBALT_NO_PMR=1 is defined:
src\detail\util.cpp(23): error C2039: 'get_allocator': is not a member of 'boost::cobalt::this_thread'
src\detail\util.cpp(23): error C3861: 'get_allocator': identifier not found
As can be seen in the code snippets below, boost::cobalt::this_thread::get_allocator() is not declared if BOOST_COBALT_NO_PMR is defined, yet it is called unconditionally under MSVC.
The MSVC build fails with the following error if
-DBOOST_COBALT_NO_PMR=1
is defined:As can be seen in the code snippets below,
boost::cobalt::this_thread::get_allocator()
is not declared ifBOOST_COBALT_NO_PMR
is defined, yet it is called unconditionally under MSVC.cobalt/include/boost/cobalt/this_thread.hpp
Lines 20 to 24 in af72ced
cobalt/include/boost/cobalt/config.hpp
Lines 29 to 32 in af72ced
cobalt/src/detail/util.cpp
Lines 17 to 28 in af72ced
The text was updated successfully, but these errors were encountered: