Commit 9ac4f3e1 authored by Podhorszki, Norbert's avatar Podhorszki, Norbert
Browse files

remove // from recognizing as comment line by adios_iotest

parent a42ce70f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ std::vector<std::string> LineToWords(const std::string &line)
bool isComment(std::string &s)
{
    bool comment = false;
    if (s[0] == '#' || s[0] == '%' || s[0] == '/')
    if (!s.compare(0, 1, "#") || !s.compare(0, 1, "%"))
    {
        comment = true;
    }