Update MolFileParser.cpp

Remove extra whitespace.
This commit is contained in:
thomp-j
2024-12-18 09:08:57 -05:00
committed by GitHub
parent a8a718923c
commit 3d2a43470f

View File

@@ -150,7 +150,7 @@ std::string getV3000Line(std::istream *inStream, unsigned int &line) {
std::string res;
++line;
auto inl = getLine(inStream);
std::string_view tempStr = inl;
std::string_view tempStr = inl;
if (tempStr.size() < 7 || tempStr.substr(0, 7) != "M V30 ") {
std::ostringstream errout;
errout << "Line " << line << " does not start with 'M V30 '" << std::endl;