make is_bjdata const after using initializer list
This commit is contained in:
parent
d5e590efe3
commit
29c7a4365f
@ -1694,7 +1694,7 @@ class binary_writer
|
|||||||
const bool is_little_endian = little_endianness();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// whether to write in bjdata format
|
/// whether to write in bjdata format
|
||||||
bool is_bjdata = false;
|
const bool is_bjdata = false;
|
||||||
|
|
||||||
/// the output
|
/// the output
|
||||||
output_adapter_t<CharType> oa = nullptr;
|
output_adapter_t<CharType> oa = nullptr;
|
||||||
|
|||||||
@ -15518,7 +15518,7 @@ class binary_writer
|
|||||||
const bool is_little_endian = little_endianness();
|
const bool is_little_endian = little_endianness();
|
||||||
|
|
||||||
/// whether to write in bjdata format
|
/// whether to write in bjdata format
|
||||||
bool is_bjdata = false;
|
const bool is_bjdata = false;
|
||||||
|
|
||||||
/// the output
|
/// the output
|
||||||
output_adapter_t<CharType> oa = nullptr;
|
output_adapter_t<CharType> oa = nullptr;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user