Skip to content

Commit 1560543

Browse files
committed
Merge pull request boostorg#24 from agnat/fix/cv_tag_volatile_constant
Fix is_volatile constant in detail::cv_tag<>
2 parents e8d7bb5 + d06f4ae commit 1560543

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)