bool literals, fixes

This commit is contained in:
ProgramSnail 2023-05-08 20:34:36 +03:00
parent b1aff1935d
commit d31979166e
24 changed files with 179 additions and 46 deletions

View file

@ -10,13 +10,13 @@ inline void PrintPosition(std::ostream& out,
std::pair<size_t, size_t> start_position,
std::pair<size_t, size_t> end_position) {
out << '['
<< start_position.first
<< start_position.first + 1
<< ", "
<< start_position.second
<< start_position.second + 1
<< "] - ["
<< end_position.first
<< end_position.first + 1
<< ", "
<< end_position.second
<< end_position.second + 1
<< ']';
}