diff options
| -rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index b8572f7..ac296fa 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -150,7 +150,7 @@ #elif defined(__GNUC__) #define TCL_UNREACHABLE() __builtin_unreachable() #elif defined(_MSC_VER) -#define TCL_UNREACHABLE() __assume(0) +#define TCL_UNREACHABLE() __assume(false) #else #define TCL_UNREACHABLE() ((void) 0) #endif |
