Linux un Windows build differences in CMakeLists and appropriate README

This commit is contained in:
jorenchik
2024-12-08 11:05:50 +02:00
parent 0d53d4fd7b
commit 5df0bf864f
5 changed files with 144 additions and 16 deletions

View File

@@ -84,6 +84,7 @@ Result<NoneType> ValidateGrammar(const std::vector<Token>& tokens) {
nextToken.tokenType
) == (*transitions)[token.tokenType].end()) {
auto capitalize = [](const std::string& str) {
if (str.empty()) return str;
std::string result = str;