From ff2fecfbe998d6586d5a4846ee39be0c4c8f1569 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 19 Aug 2005 21:14:12 +0000 Subject: Import from gnulib. (__restrict_arr): Don't define to __restrict if __cplusplus is defined. --- lib/regex.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/regex.h') diff --git a/lib/regex.h b/lib/regex.h index 0a59c7be1..bdce605a3 100644 --- a/lib/regex.h +++ b/lib/regex.h @@ -552,9 +552,9 @@ extern int re_exec _RE_ARGS ((const char *)); # endif # endif #endif -/* gcc 3.1 and up support the [restrict] syntax. */ +/* gcc 3.1 and up support the [restrict] syntax, but g++ doesn't. */ #ifndef __restrict_arr -# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) +# if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) && !defined __cplusplus # define __restrict_arr __restrict # else # define __restrict_arr -- cgit v1.2.3-54-g00ecf