Part 2
This commit is contained in:
serge-sans-paille 2022-01-21 12:12:16 +01:00
parent ae2f9c8be8
commit f53d359816

View File

@ -60,7 +60,7 @@ class OutputBuffer {
// Add negative sign...
if (isNeg)
*--TempPtr = '-';
this->operator<<(StringView(TempPtr, Temp.end()));
this->operator<<(StringView(TempPtr, Temp.data() + Temp.size()));
}
public: