1

add overloads for bse::string

This commit is contained in:
2022-07-24 00:08:22 +02:00
parent 4aa6d089ca
commit 520445b66e
10 changed files with 84 additions and 48 deletions

View File

@ -31,7 +31,7 @@
void StringBuffer::put(char c) {
buffer[pos] = c;
pos++;
if (pos == sizeof(buffer)) {
if (pos == buffer.size()) {
flush();
}
}