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-09-07 19:19:05 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-09-07 19:19:05 +0300
commit7bf5a07ed9ac5cf2084a103bb24725902a7ecf4e (patch)
treeaea832e4f26173441e8ab020da1d3ba02c538d67 /src/Endstops
parent8a84ba398149651fe014bfaae64c3e2fe79e7219 (diff)
Resolved minor issues for eCv
Diffstat (limited to 'src/Endstops')
-rw-r--r--src/Endstops/EndstopsManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/EndstopsManager.h b/src/Endstops/EndstopsManager.h
index 0fbe43de..a8ac8c64 100644
--- a/src/Endstops/EndstopsManager.h
+++ b/src/Endstops/EndstopsManager.h
@@ -44,7 +44,7 @@ public:
// Configure the endstops in response to M574
GCodeResult HandleM574(GCodeBuffer& gb, const StringRef& reply, OutputBuffer*& outbuf) THROWS(GCodeException);
- EndStopPosition GetEndStopPosition(size_t axis) const pre(axis < MaxAxes) noexcept;
+ EndStopPosition GetEndStopPosition(size_t axis) const noexcept pre(axis < MaxAxes);
bool HomingZWithProbe() const noexcept;
bool Stopped(size_t axis) const noexcept;