Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-10-04 20:33:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-10-04 20:33:47 +0300
commit1cbc804408f7efb198c388dd8d5af1d08c8fbf20 (patch)
tree4a23934543f8710cb03fd7f30fe558cda7397981 /src/GCodes/GCodeBuffer/ExpressionParser.h
parentdb7f42f07d3f616a5c5fdd15ae5fd86052ebbddd (diff)
Bug fix: deeply nested expressions threw error in SBC mode
Diffstat (limited to 'src/GCodes/GCodeBuffer/ExpressionParser.h')
-rw-r--r--src/GCodes/GCodeBuffer/ExpressionParser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/GCodes/GCodeBuffer/ExpressionParser.h b/src/GCodes/GCodeBuffer/ExpressionParser.h
index 011b3eab..2fbee391 100644
--- a/src/GCodes/GCodeBuffer/ExpressionParser.h
+++ b/src/GCodes/GCodeBuffer/ExpressionParser.h
@@ -50,6 +50,7 @@ private:
void __attribute__((noinline)) ParseQuotedString(ExpressionValue& rslt) THROWS(GCodeException);
void ParseArray(size_t& length, function_ref<void(size_t index) THROWS(GCodeException)> processElement) THROWS(GCodeException);
+ time_t ParseDateTime(const char *s) const THROWS(GCodeException);
void GetVariableValue(ExpressionValue& rslt, const VariableSet *vars, const char *name, bool parameter, bool wantExists) THROWS(GCodeException);