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>2020-01-08 21:51:35 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-01-08 21:51:35 +0300
commitade692419913c4777aa14f89b10e14c7ff298648 (patch)
treeb9c317fa80e11263f25ee1db07f8a285ea0b9987 /src/GCodes/GCodeQueue.h
parentba5341edce9c26062c6aa61c83a975eb4a2dc6ef (diff)
Refactored object model framework to support virtual arrays
Diffstat (limited to 'src/GCodes/GCodeQueue.h')
-rw-r--r--src/GCodes/GCodeQueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeQueue.h b/src/GCodes/GCodeQueue.h
index 322fd9ac..b6c50165 100644
--- a/src/GCodes/GCodeQueue.h
+++ b/src/GCodes/GCodeQueue.h
@@ -30,7 +30,7 @@ public:
void Diagnostics(MessageType mtype) noexcept;
- static bool ShouldQueueCode(GCodeBuffer &gb) THROWS_PARSE_ERROR; // Return true if this code should be queued
+ static bool ShouldQueueCode(GCodeBuffer &gb) THROWS_GCODE_EXCEPTION; // Return true if this code should be queued
private:
QueuedCode *freeItems;