Skip to content

Commit

Permalink
Removed constexpr
Browse files Browse the repository at this point in the history
Tag isn't constexpr

Contributes to CURA-10561
  • Loading branch information
jellespijker committed Oct 11, 2023
1 parent e7167e7 commit e491845
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/dulcificum/command_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct Command
{
Command() = delete;

constexpr explicit Command(CommandType type) noexcept
explicit Command(CommandType type) noexcept
: type{ type }
{
}
Expand All @@ -75,7 +75,7 @@ struct Comment : public Command

struct Move : public Command
{
constexpr Move() noexcept
Move() noexcept
: Command(CommandType::kMove)
{
}
Expand All @@ -87,7 +87,7 @@ struct Move : public Command

struct FanDuty : public Command
{
constexpr FanDuty() noexcept
FanDuty() noexcept
: Command(CommandType::kActiveFanDuty)
{
}
Expand All @@ -98,7 +98,7 @@ struct FanDuty : public Command

struct FanToggle : public Command
{
constexpr FanToggle() noexcept
FanToggle() noexcept
: Command(CommandType::kActiveFanEnable)
{
}
Expand All @@ -109,7 +109,7 @@ struct FanToggle : public Command

struct SetTemperature : public Command
{
constexpr SetTemperature() noexcept
SetTemperature() noexcept
: Command(CommandType::kSetTemperature)
{
}
Expand All @@ -120,7 +120,7 @@ struct SetTemperature : public Command

struct WaitForTemperature : public Command
{
constexpr WaitForTemperature() noexcept
WaitForTemperature() noexcept
: Command(CommandType::kWaitForTemperature)
{
}
Expand All @@ -130,7 +130,7 @@ struct WaitForTemperature : public Command

struct ChangeTool : public Command
{
constexpr ChangeTool() noexcept
ChangeTool() noexcept
: Command(CommandType::kChangeTool)
{
}
Expand All @@ -141,7 +141,7 @@ struct ChangeTool : public Command

struct Delay : public Command
{
constexpr Delay() noexcept
Delay() noexcept
: Command(CommandType::kDelay)
{
}
Expand Down

0 comments on commit e491845

Please sign in to comment.