We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfe80c commit 873b682Copy full SHA for 873b682
include/icubaby/icubaby.hpp
@@ -1327,7 +1327,7 @@ template <ICUBABY_CONCEPT_UNICODE_CHAR_TYPE ToEncoding> class transcoder<std::by
1327
case states::utf32_or_16_le_bom_byte1:
1328
case states::utf32_or_16_be_bom_byte1:
1329
case states::utf32_be_bom_byte2:
1330
- assert (this->get_byte_no () == 1 || this->get_byte_no () == 2 && "This must be byte #1 or #2");
+ assert ((this->get_byte_no () == 1 || this->get_byte_no () == 2) && "This must be byte #1 or #2");
1331
buffer_[this->get_byte_no ()] = value;
1332
if (value == this->bom_value ()) {
1333
state_ = this->next_byte ();
0 commit comments