Added CMakeLists & addressed warning

This commit is contained in:
-
2023-03-25 10:44:43 -07:00
parent e91b74655e
commit e018389452
3 changed files with 30 additions and 7 deletions

View File

@@ -52,12 +52,13 @@ using namespace std;
line.find(KEYWORD_PREFAB) != string::npos) || (
line.find(KEYWORD_BRUSH) != string::npos && !is_ebrush(output))) {
f.seekg(pos);
return output;
break;
} else {
output.push_back(line);
}
pos = f.tellg();
}
return output;
}
template <class STREAMOBJ>