remove comments

This commit is contained in:
proddy
2024-07-20 13:21:20 +02:00
parent f27eb05024
commit 353e1f4460

View File

@@ -583,13 +583,11 @@ std::string calculate(const std::string & expr) {
}
// concatenate all elements in stack to a single string, separated by spaces and return
// experimental - for MDvP to check
std::string result = "";
for (const auto & s : stack) {
result += s;
}
return result;
// return stack.back();
}