skip the UTF-8 byte order mark
- Returns
- true iff there is no BOM or the correct BOM has been skipped
Definition at line 8093 of file json.hpp.
8094 {
8095 if (get() == 0xEF)
8096 {
8097
8098 return get() == 0xBB && get() == 0xBF;
8099 }
8100
8101
8102
8104 return true;
8105 }
void unget()
unget current character (read it again on next get)