* private.h (static_assert): Improve comment. --- private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/private.h b/private.h index 4daa4864..e5f6af59 100644 --- a/private.h +++ b/private.h @@ -83,7 +83,7 @@ #endif /* For pre-C23 compilers, a substitute for static_assert. - Some of these compilers may warn if it is not used at the top level. */ + Some of these compilers may warn if it is used outside the top level. */ #if __STDC_VERSION__ < 202311 && !defined static_assert # define static_assert(cond) extern int static_assert_check[(cond) ? 1 : -1] #endif -- 2.51.0
