From f31dbd44a566beec2284c0327099f6e26efae636 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Fri, 10 Jul 2026 12:13:31 +0200 Subject: [PATCH] rollback regex --- src/core/shuntingYard.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core/shuntingYard.cpp b/src/core/shuntingYard.cpp index 6f37dc3d3..ee03769bd 100644 --- a/src/core/shuntingYard.cpp +++ b/src/core/shuntingYard.cpp @@ -21,7 +21,6 @@ #include "emsesp.h" #include "shuntingYard.h" -// #include namespace emsesp { @@ -334,8 +333,6 @@ std::deque shuntingYard(const std::deque & tokens) { // check if string is a number bool isnum(const std::string & s) { - // std::regex r("^[+-]?(\\d+\\.?\\d*)$"); - // return std::regex_match(s, r); if (s.empty() || s.find_first_of("0123456789") == std::string::npos) { return false; }