Skip to content

Commit d06f4ae

Browse files
committed
Fix is_volatile constant in detail::cv_tag<>
1 parent e8d7bb5 commit d06f4ae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/python/detail/cv_category.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ template <bool is_const_, bool is_volatile_>
1212
struct cv_tag
1313
{
1414
BOOST_STATIC_CONSTANT(bool, is_const = is_const_);
15-
BOOST_STATIC_CONSTANT(bool, is_volatile = is_const_);
15+
BOOST_STATIC_CONSTANT(bool, is_volatile = is_volatile_);
1616
};
1717

1818
typedef cv_tag<false,false> cv_unqualified;

0 commit comments

Comments
 (0)