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:
Diffstat (limited to 'src/SoftwareReset.h')
-rw-r--r--src/SoftwareReset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SoftwareReset.h b/src/SoftwareReset.h
index 29c47d91..d53ed3c1 100644
--- a/src/SoftwareReset.h
+++ b/src/SoftwareReset.h
@@ -67,8 +67,8 @@ struct SoftwareResetData
uint32_t taskName; // first 4 bytes of the task name
uint32_t stack[23]; // stack when the exception occurred, with the program counter at the bottom
- bool isVacant() const; // return true if this struct can be written without erasing it first
- void Populate(uint16_t reason, uint32_t time, const uint32_t *stk);
+ bool isVacant() const noexcept; // return true if this struct can be written without erasing it first
+ void Populate(uint16_t reason, uint32_t time, const uint32_t *stk) noexcept;
static const uint16_t versionValue = 8; // increment this whenever this struct changes
static const uint16_t magicValue = 0x7D00 | versionValue; // value we use to recognise that all the flash data has been written