mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
remove comments
This commit is contained in:
@@ -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
|
// concatenate all elements in stack to a single string, separated by spaces and return
|
||||||
// experimental - for MDvP to check
|
|
||||||
std::string result = "";
|
std::string result = "";
|
||||||
for (const auto & s : stack) {
|
for (const auto & s : stack) {
|
||||||
result += s;
|
result += s;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
// return stack.back();
|
// return stack.back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user