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-06-07 16:26:31 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-06-07 16:26:31 +0300
commitb41de852a65359a6361a50fc4700cb6578ae97c1 (patch)
tree5f73399233e2e285f85d5de6618eb75316bc5d35 /src/GCodes/GCodeBuffer/ExpressionParser.h
parent8d12f40337f749450479c9a2079b694441f1dddb (diff)
Fixed issue with doing maths on unsigned values e.g. job.filePosition
Diffstat (limited to 'src/GCodes/GCodeBuffer/ExpressionParser.h')
-rw-r--r--src/GCodes/GCodeBuffer/ExpressionParser.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/GCodes/GCodeBuffer/ExpressionParser.h b/src/GCodes/GCodeBuffer/ExpressionParser.h
index 778a5b22..fc8dc1b3 100644
--- a/src/GCodes/GCodeBuffer/ExpressionParser.h
+++ b/src/GCodes/GCodeBuffer/ExpressionParser.h
@@ -54,7 +54,6 @@ private:
void BalanceNumericTypes(ExpressionValue& val1, ExpressionValue& val2, bool evaluate) const THROWS(GCodeException);
void BalanceTypes(ExpressionValue& val1, ExpressionValue& val2, bool evaluate) THROWS(GCodeException);
- void EnsureNumeric(ExpressionValue& val, bool evaluate) const THROWS(GCodeException);
static bool TypeHasNoLiterals(TypeCode t) noexcept;
int GetColumn() const noexcept;