Skip to content

Commit

Permalink
utils: Fix macro for unreachable code in Windows platforms
Browse files Browse the repository at this point in the history
Signed-off-by: Siddharth Chandrasekaran <[email protected]>
  • Loading branch information
Siddharth Chandrasekaran authored and sidcha committed Aug 3, 2024
1 parent 3f343bc commit 9e9e8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/utils/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ extern "C" {
#define __format_printf(x, y)
#define __noreturn
#define __weak
#define __unreachable()
#define __unreachable() __assume(0)
#define likely(p) (p)
#define unlikely(p) (p)
#define isatty _isatty
Expand Down

0 comments on commit 9e9e8ef

Please sign in to comment.