mirror of
https://github.com/boostorg/dynamic_bitset.git
synced 2026-01-19 04:12:09 +00:00
Fix the condition to choose the definition of BOOST_DYNAMIC_BITSET_CTYPE_FACET()
I realized that BOOST_USE_FACET() is always defined, so we have always used one branch of the preprocessing conditional for all this time.
This commit is contained in:
@@ -41,7 +41,7 @@ make_non_const( T t )
|
||||
// the first macro is a no-op and the second one just expands
|
||||
// to its argument c (in parentheses).
|
||||
//
|
||||
#if defined( BOOST_USE_FACET )
|
||||
#if ! defined( BOOST_NO_STD_LOCALE )
|
||||
|
||||
# define BOOST_DYNAMIC_BITSET_CTYPE_FACET( ch, name, loc ) \
|
||||
const std::ctype< ch > & name = \
|
||||
|
||||
Reference in New Issue
Block a user