Skip to content

Commit

Permalink
Missing semicolon (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunhor committed Feb 2, 2024
1 parent c685d0f commit 78dcd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/wil/result_macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ WI_ODR_PRAGMA("WIL_FreeMemory", "0")
if (!wil::verify_bool(condition)) \
{ \
WI_ASSERT_FAIL(#condition); \
__RFF_FN(FailFast_Unexpected)(__RFF_INFO_ONLY(#condition)) \
__RFF_FN(FailFast_Unexpected)(__RFF_INFO_ONLY(#condition)); \
} \
} while (0, 0)
#define WI_FAIL_FAST_ASSERT_MSG(condition, msg) \
Expand Down

0 comments on commit 78dcd40

Please sign in to comment.