File tree 1 file changed +4
-4
lines changed
include/boost/property_tree/json_parser/detail
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ namespace boost { namespace property_tree {
49
49
void read_json_internal (Iterator first, Sentinel last, Encoding& encoding,
50
50
Callbacks& callbacks, const std::string& filename)
51
51
{
52
- BOOST_STATIC_ASSERT_MSG (boost::is_same<
52
+ BOOST_STATIC_ASSERT_MSG (( boost::is_same<
53
53
typename std::iterator_traits<Iterator>::value_type,
54
- typename Encoding::external_char>::value,
54
+ typename Encoding::external_char>::value) ,
55
55
" Encoding is not capable of using the iterator's value type." );
56
- BOOST_STATIC_ASSERT_MSG (boost::is_same<
56
+ BOOST_STATIC_ASSERT_MSG (( boost::is_same<
57
57
typename Callbacks::char_type,
58
- typename Encoding::internal_char>::value,
58
+ typename Encoding::internal_char>::value) ,
59
59
" Encoding is not capable of producing the needed character type." );
60
60
61
61
detail::parser<Callbacks, Encoding, Iterator, Sentinel>
You can’t perform that action at this time.
0 commit comments