From 58a1d5d96e6a1259dcb5d12b7b103eff4bbdd1fd Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 12 Apr 2023 14:18:33 +0300 Subject: [PATCH] Revert "InoToCpp: add ':' to arguments regexp" (#4595) Revert "InoToCpp: add ':' to arguments regexp (#4586)" This reverts commit 71bb84f3f27dd28dd873cb72e7a50e52e0d912fa. --- platformio/builder/tools/pioino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/builder/tools/pioino.py b/platformio/builder/tools/pioino.py index 92e76ac1..c44e72b7 100644 --- a/platformio/builder/tools/pioino.py +++ b/platformio/builder/tools/pioino.py @@ -30,7 +30,7 @@ class InoToCPPConverter: (?:template\<.*\>\s*)? # template ([a-z_\d\&]+\*?\s+){1,2} # return type ([a-z_\d]+\s*) # name of prototype - \([a-z_:,\.\*\&\[\]\s\d]*\) # arguments + \([a-z_,\.\*\&\[\]\s\d]*\) # arguments )\s*(\{|;) # must end with `{` or `;` """, re.X | re.M | re.I,