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-01-09 18:24:16 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-01-09 18:24:16 +0300
commit277977b60b2b1349578863dd16e4095121d6c749 (patch)
tree8685eccfded96c9da76d6ecbc138b33df6bc9bbd /src/Endstops/Endstop.h
parent6bb2ddc8936d1352e5a5146f20c86fa388076f68 (diff)
Fixes for gcc version 10
Also fixed shadow definitions
Diffstat (limited to 'src/Endstops/Endstop.h')
-rw-r--r--src/Endstops/Endstop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Endstops/Endstop.h b/src/Endstops/Endstop.h
index 73f51872..3d288a02 100644
--- a/src/Endstops/Endstop.h
+++ b/src/Endstops/Endstop.h
@@ -105,7 +105,7 @@ public:
void SetAtHighEnd(bool b) noexcept { atHighEnd = b; }
protected:
- Endstop(uint8_t axis, EndStopPosition pos) noexcept;
+ Endstop(uint8_t p_axis, EndStopPosition pos) noexcept;
DECLARE_OBJECT_MODEL