Module Name: src
Committed By: kamil
Date: Fri Apr 17 15:22:35 UTC 2020
Modified Files:
src/include: assert.h
Log Message:
Remove the static_assert() fallback for pre-C11 and pre-C++11
C++ without real static_assert() can be incompatible with the C fallback
as presented in openjdk.
A pre-C11 compiler can be picky on the implementation.
To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/include/assert.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/assert.h
diff -u src/include/assert.h:1.24 src/include/assert.h:1.25
--- src/include/assert.h:1.24 Mon May 27 07:31:11 2019
+++ src/include/assert.h Fri Apr 17 15:22:34 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: assert.h,v 1.24 2019/05/27 07:31:11 kamil Exp $ */
+/* $NetBSD: assert.h,v 1.25 2020/04/17 15:22:34 kamil Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -105,10 +105,8 @@ void __diagassert13(const char *, int, c
__END_DECLS
#endif /* __ASSERT_DECLARED */
-#ifndef static_assert
#if defined(_ISOC11_SOURCE) || (__STDC_VERSION__ - 0) >= 201101L
+#ifndef static_assert
#define static_assert _Static_assert
-#elif defined(_NETBSD_SOURCE) && (__cplusplus - 0) < 201103L
-#define static_assert(x, y) __CTASSERT(x)
#endif /* static_assert */
#endif