Skip to content

Commit

Permalink
fix error for c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
oathdruid committed Aug 6, 2024
1 parent ef8fc2c commit ff21771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/babylon/logging/log_severity.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class LogSeverity {
inline constexpr LogSeverity() noexcept = default;
inline constexpr LogSeverity(LogSeverity&&) noexcept = default;
inline constexpr LogSeverity(const LogSeverity&) noexcept = default;
inline constexpr LogSeverity& operator=(LogSeverity&&) noexcept = default;
inline constexpr LogSeverity& operator=(const LogSeverity&) noexcept =
inline CONSTEXPR_SINCE_CXX14 LogSeverity& operator=(LogSeverity&&) noexcept = default;
inline CONSTEXPR_SINCE_CXX14 LogSeverity& operator=(const LogSeverity&) noexcept =
default;
inline ~LogSeverity() noexcept = default;

Expand Down

0 comments on commit ff21771

Please sign in to comment.