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-05-26 11:38:18 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-05-26 11:38:18 +0300
commit0ccbadc71be4ea7812236f099ea90180a0df424a (patch)
tree69748869623762b287bb65234f422379947f78e5 /src/Endstops/EndstopsManager.cpp
parent2d6866c9de072bf20e790991d93e4f3cae6d19bb (diff)
Corrected some exception specifications (thanks Andy)
Diffstat (limited to 'src/Endstops/EndstopsManager.cpp')
-rw-r--r--src/Endstops/EndstopsManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/EndstopsManager.cpp b/src/Endstops/EndstopsManager.cpp
index dfe28b52..6cb83821 100644
--- a/src/Endstops/EndstopsManager.cpp
+++ b/src/Endstops/EndstopsManager.cpp
@@ -314,7 +314,7 @@ EndstopHitDetails EndstopsManager::CheckEndstops() noexcept
}
// Configure the endstops in response to M574
-GCodeResult EndstopsManager::HandleM574(GCodeBuffer& gb, const StringRef& reply, OutputBuffer*& outbuf) noexcept
+GCodeResult EndstopsManager::HandleM574(GCodeBuffer& gb, const StringRef& reply, OutputBuffer*& outbuf) THROWS(GCodeException)
{
// First count how many axes we are configuring, and lock movement if necessary
unsigned int axesSeen = 0;