about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-12-23 22:55:44 -0500
committerUlrich Drepper <drepper@gmail.com>2012-01-01 07:17:20 -0500
commit839e283ece8f4a8312dd6c558df8c739356fddb7 (patch)
tree075f4d373a3716e7efd073016546451a7c610f20
parent90fa7312770b1caca8843a55a9c3825585aac140 (diff)
downloadglibc-839e283ece8f4a8312dd6c558df8c739356fddb7.tar.gz
glibc-839e283ece8f4a8312dd6c558df8c739356fddb7.tar.xz
glibc-839e283ece8f4a8312dd6c558df8c739356fddb7.zip
Define static_assert
-rw-r--r--ChangeLog3
-rw-r--r--NEWS2
-rw-r--r--assert/assert.h9
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eee573cc3c..c85afad321 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,6 +28,9 @@
 
 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
 
+	[BZ #13529]
+	* assert/assert.h (static_assert): Define.
+
 	* version.h: Update for 2.15 development version.
 
 	[BZ #13526]
diff --git a/NEWS b/NEWS
index 69d4cbcc18..b276f3169a 100644
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,7 @@ Version 2.16
 
 * The following bugs are resolved with this release:
 
-  13526
+  13526, 13529
 
 
 Version 2.15
diff --git a/assert/assert.h b/assert/assert.h
index 841f435973..4022e28b55 100644
--- a/assert/assert.h
+++ b/assert/assert.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,1992,1994-2001,2003,2004,2007
+/* Copyright (C) 1991,1992,1994-2001,2003,2004,2007,2011
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -113,3 +113,10 @@ __END_DECLS
 # endif
 
 #endif /* NDEBUG.  */
+
+
+#ifdef __USE_ISOC11
+/* Static assertion.  Requires support in the compiler.  */
+# undef static_assert
+# define static_assert _Static_assert
+#endif