Update scanscalar.cpp

Removed damn.  happened to notice this through another project ( on a git submodule ) while skimming code to understand things. I use yaml-cpp on other projects and think it's great, so I thought I'd do my tiny little part. Totally fine if you think this is unnecessary or unwarranted.
This commit is contained in:
Marc 2020-05-24 21:27:13 -04:00 committed by GitHub
parent cb7bb9821d
commit f178730d37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ std::string ScanScalar(Stream& INPUT, ScanScalarParams& params) {
continue; continue;
} }
// otherwise, just add the damn character // otherwise, add the character
char ch = INPUT.get(); char ch = INPUT.get();
scalar += ch; scalar += ch;
if (ch != ' ' && ch != '\t') { if (ch != ' ' && ch != '\t') {