diff --git a/src/Utils/CSV.cpp b/src/Utils/CSV.cpp index 380577cb..d3399f98 100644 --- a/src/Utils/CSV.cpp +++ b/src/Utils/CSV.cpp @@ -110,7 +110,7 @@ namespace Utils //++i; continue; } - else if (!isString && row[i] == '#' && allowComments) // Skip comments. I know CSVs usually don't have comments, but in this case it's useful + else if (!isString && (row[i] == '#' || (row[i] == '/' && row[i+1] == '/') ) && allowComments) // Skip comments. I know CSVs usually don't have comments, but in this case it's useful { return; }