We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f9085e commit d3fae08Copy full SHA for d3fae08
library.properties
@@ -1,5 +1,5 @@
1
name=arduino-timer-cpp17
2
-version=4.3.0
+version=4.5.0
3
4
author=Kevin P. Fleming
5
maintainer=Kevin P. Fleming
src/arduino-timer-cpp17.hpp
@@ -87,6 +87,8 @@ struct Timer
87
Timer() = default;
88
Timer(const Timer&) = delete;
89
Timer& operator=(const Timer&) = delete;
90
+ Timer(Timer&&) = delete;
91
+ Timer& operator=(Timer&&) = delete;
92
93
// boolean to indicate whether this timer is active
94
explicit operator bool() const noexcept
0 commit comments