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:
Diffstat (limited to 'src/GCodes/GCodeBuffer/GCodeBuffer.cpp')
-rw-r--r--src/GCodes/GCodeBuffer/GCodeBuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GCodes/GCodeBuffer/GCodeBuffer.cpp b/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
index 87c126d6..b1a32939 100644
--- a/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
+++ b/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
@@ -84,7 +84,7 @@ const char *GCodeBuffer::GetStateText() const noexcept
// Create a default GCodeBuffer
GCodeBuffer::GCodeBuffer(GCodeChannel::RawType channel, GCodeInput *normalIn, FileGCodeInput *fileIn, MessageType mt, Compatibility::RawType c) noexcept
- : codeChannel(channel), normalInput(normalIn), whenReportDueTimerStarted(millis()),
+ : codeChannel(channel), normalInput(normalIn),
#if HAS_MASS_STORAGE
fileInput(fileIn),
#endif
@@ -93,7 +93,7 @@ GCodeBuffer::GCodeBuffer(GCodeChannel::RawType channel, GCodeInput *normalIn, Fi
binaryParser(*this),
#endif
stringParser(*this),
- machineState(new GCodeMachineState()),
+ machineState(new GCodeMachineState()), whenReportDueTimerStarted(millis()),
#if HAS_LINUX_INTERFACE
isBinaryBuffer(false),
#endif