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>2022-01-03 16:42:58 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-01-03 16:42:58 +0300
commitc0d70be1c4eb552239a51dbdc4f57979646e8ae9 (patch)
tree1933970f167e43452ec1005a3007e28a373e9eae /src/Platform/MessageType.h
parent1700e65ffb2d6f47b558d573fb6bb9b737fd7246 (diff)
Minor changes for eCv
Diffstat (limited to 'src/Platform/MessageType.h')
-rw-r--r--src/Platform/MessageType.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Platform/MessageType.h b/src/Platform/MessageType.h
index 4da31ab6..2c4c4b76 100644
--- a/src/Platform/MessageType.h
+++ b/src/Platform/MessageType.h
@@ -66,7 +66,7 @@ inline constexpr MessageType AddLogDebug(MessageType mt) noexcept
{
// Debug level has no flags set such that any non-flagged message automatically
// is part of this log level - force it by removing the existing flags
- return (MessageType)(mt & ~(LogMessageLowBit | LogMessageHighBit));
+ return (MessageType)((uint32_t)mt & ~((uint32_t)LogMessageLowBit | (uint32_t)LogMessageHighBit));
}
inline constexpr MessageType AddLogWarn(MessageType mt) noexcept
@@ -74,7 +74,7 @@ inline constexpr MessageType AddLogWarn(MessageType mt) noexcept
// Since increasing log levels have lower numbers we need to delete
// any existing log flags first - otherwise this could lead to MessageLogLevel
// rising to 3 which is equivalent to OFF
- return (MessageType)(AddLogDebug(mt) | LogWarn);
+ return (MessageType)((uint32_t)AddLogDebug(mt) | (uint32_t)LogWarn);
}
inline constexpr MessageType AddLogInfo(MessageType mt) noexcept
@@ -82,22 +82,22 @@ inline constexpr MessageType AddLogInfo(MessageType mt) noexcept
// Since increasing log levels have lower numbers we need to delete
// any existing log flags first - otherwise this could lead to MessageLogLevel
// rising to 3 which is equivalent to OFF
- return (MessageType)(AddLogDebug(mt) | LogInfo);
+ return (MessageType)((uint32_t)AddLogDebug(mt) | (uint32_t)LogInfo);
}
inline constexpr MessageType RemoveLogging(MessageType mt) noexcept
{
- return (MessageType)(mt | LogOff);
+ return (MessageType)((uint32_t)mt | (uint32_t)LogOff);
}
inline constexpr MessageType AddError(MessageType mt) noexcept
{
- return AddLogWarn((MessageType)(mt | ErrorMessageFlag));
+ return AddLogWarn((MessageType)((uint32_t)mt | (uint32_t)ErrorMessageFlag));
}
inline constexpr MessageType AddWarning(MessageType mt) noexcept
{
- return AddLogWarn((MessageType)(mt | WarningMessageFlag));
+ return AddLogWarn((MessageType)((uint32_t)mt | (uint32_t)WarningMessageFlag));
}
#endif /* MESSAGETYPE_H_ */