Skip to content

Commit ebd9a60

Browse files
author
Sebastian Redl
committed
Fix compilation error due to incorrect macro usage.
1 parent ea94099 commit ebd9a60

File tree

1 file changed

+4
-4
lines changed
  • include/boost/property_tree/json_parser/detail

1 file changed

+4
-4
lines changed

include/boost/property_tree/json_parser/detail/read.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ namespace boost { namespace property_tree {
4949
void read_json_internal(Iterator first, Sentinel last, Encoding& encoding,
5050
Callbacks& callbacks, const std::string& filename)
5151
{
52-
BOOST_STATIC_ASSERT_MSG(boost::is_same<
52+
BOOST_STATIC_ASSERT_MSG((boost::is_same<
5353
typename std::iterator_traits<Iterator>::value_type,
54-
typename Encoding::external_char>::value,
54+
typename Encoding::external_char>::value),
5555
"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<
5757
typename Callbacks::char_type,
58-
typename Encoding::internal_char>::value,
58+
typename Encoding::internal_char>::value),
5959
"Encoding is not capable of producing the needed character type.");
6060

6161
detail::parser<Callbacks, Encoding, Iterator, Sentinel>

0 commit comments

Comments
 (0)