summaryrefslogtreecommitdiff
path: root/lib/regex.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/regex.h')
-rw-r--r--lib/regex.h4
1 files changed, 2 insertions, 2 deletions
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