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-16 10:44:24 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-09-16 10:44:24 +0300
commit07f3604832b918a5e334ba51e655366ad5d1a2a9 (patch)
treeffe909b6933b11dd040f6ea60fad6e65ba85fc87 /src/RepRapFirmware.h
parent02afcf0c9e60e1576e18f9c6dbb2adb82da57a19 (diff)
Minor change for eCv
Diffstat (limited to 'src/RepRapFirmware.h')
-rw-r--r--src/RepRapFirmware.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RepRapFirmware.h b/src/RepRapFirmware.h
index da7bc03d..112509f0 100644
--- a/src/RepRapFirmware.h
+++ b/src/RepRapFirmware.h
@@ -419,7 +419,7 @@ public:
SimpleRangeIterator(T value_) noexcept : val(value_) {}
bool operator != (SimpleRangeIterator<T> const& other) const noexcept { return val != other.val; }
T const& operator*() const noexcept { return val; }
- SimpleRangeIterator& operator++() noexcept { ++val; return *this; }
+ SimpleRangeIterator<T>& operator++() noexcept { ++val; return *this; }
private:
T val;