changed a lot of small clang-tidy warnings
This commit is contained in:
@ -31,6 +31,7 @@
|
||||
void StringBuffer::put(char c) {
|
||||
buffer[pos] = c;
|
||||
pos++;
|
||||
if (pos == sizeof(buffer))
|
||||
if (pos == sizeof(buffer)) {
|
||||
flush();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user