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/Heating/Sensors/SensorWithPort.h')
-rw-r--r--src/Heating/Sensors/SensorWithPort.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Heating/Sensors/SensorWithPort.h b/src/Heating/Sensors/SensorWithPort.h
index 140cd0e9..d627247c 100644
--- a/src/Heating/Sensors/SensorWithPort.h
+++ b/src/Heating/Sensors/SensorWithPort.h
@@ -13,14 +13,14 @@
class SensorWithPort : public TemperatureSensor
{
protected:
- SensorWithPort(unsigned int sensorNum, const char *type);
- ~SensorWithPort();
+ SensorWithPort(unsigned int sensorNum, const char *type) noexcept;
+ ~SensorWithPort() noexcept;
// Try to configure the port
bool ConfigurePort(GCodeBuffer& gb, const StringRef& reply, PinAccess access, bool& seen);
// Copy the basic details to the reply buffer. This hides the version in the base class.
- void CopyBasicDetails(const StringRef& reply) const;
+ void CopyBasicDetails(const StringRef& reply) const noexcept;
IoPort port;
};