summaryrefslogtreecommitdiffstats
path: root/gl/verify.h
diff options
context:
space:
mode:
Diffstat (limited to 'gl/verify.h')
-rw-r--r--gl/verify.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gl/verify.h b/gl/verify.h
index fac53f6..bcd3f5a 100644
--- a/gl/verify.h
+++ b/gl/verify.h
@@ -1,6 +1,6 @@
1/* Compile-time assert-like macros. 1/* Compile-time assert-like macros.
2 2
3 Copyright (C) 2005, 2006 Free Software Foundation, Inc. 3 Copyright (C) 2005-2006, 2009-2010 Free Software Foundation, Inc.
4 4
5 This program is free software: you can redistribute it and/or modify 5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
@@ -110,8 +110,8 @@
110 110
111 #if 4 <= __GNUC__ 111 #if 4 <= __GNUC__
112 # define verify(R) \ 112 # define verify(R) \
113 extern int (* verify_function__ (void)) \ 113 extern int (* verify_function__ (void)) \
114 [__builtin_constant_p (R) && (R) ? 1 : -1] 114 [__builtin_constant_p (R) && (R) ? 1 : -1]
115 #endif 115 #endif
116 116
117 * In C++, any struct definition inside sizeof is invalid. 117 * In C++, any struct definition inside sizeof is invalid.