Skip to content

Commit

Permalink
fix unreachable macro
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed May 24, 2024
1 parent 27da4cf commit cee53ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helper/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ namespace utils {
utils::unreachable(); \
} while (false)
#else
#define UNREACHABLE() utils::unreachable // NOLINT(cppcoreguidelines-macro-usage)
#define UNREACHABLE() utils::unreachable() // NOLINT(cppcoreguidelines-macro-usage)
#endif
// NOLINT(cppcoreguidelines-macro-usage)

Expand Down

0 comments on commit cee53ca

Please sign in to comment.