make is_bjdata const after using initializer list

This commit is contained in:
Qianqian Fang 2022-02-20 19:14:37 -05:00
parent d5e590efe3
commit 29c7a4365f
2 changed files with 2 additions and 2 deletions

View File

@ -1694,7 +1694,7 @@ class binary_writer
const bool is_little_endian = little_endianness();
/// whether to write in bjdata format
bool is_bjdata = false;
const bool is_bjdata = false;
/// the output
output_adapter_t<CharType> oa = nullptr;

View File

@ -15518,7 +15518,7 @@ class binary_writer
const bool is_little_endian = little_endianness();
/// whether to write in bjdata format
bool is_bjdata = false;
const bool is_bjdata = false;
/// the output
output_adapter_t<CharType> oa = nullptr;