grammar fix

This commit is contained in:
Shane Grant
2015-12-22 14:52:02 -08:00
parent 61429d2292
commit ecb44372e5
+1 -1
View File
@@ -234,7 +234,7 @@ namespace cereal
auto strValue = itsOS.str();
// itsOS.str() may contains data from previous calls after the first '\0' that was just inserted
// itsOS.str() may contain data from previous calls after the first '\0' that was just inserted
// and this data is counted in the length call. We make sure to remove that section so that the
// whitespace validation is done properly
strValue.resize(std::strlen(strValue.c_str()));