aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/intern.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r--include/ruby/intern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 734bdfa7a8..f9d4469f69 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -536,19 +536,19 @@ VALUE rb_str_tmp_new(long);
VALUE rb_usascii_str_new(const char*, long);
VALUE rb_usascii_str_new2(const char*);
#if defined __GNUC__
-#define rb_str_new2(str) ( \
+#define rb_str_new2(str) __extension__ ( \
{ \
(__builtin_constant_p(str)) ? \
rb_str_new(str, strlen(str)) : \
rb_str_new2(str); \
})
-#define rb_tainted_str_new2(str) ( \
+#define rb_tainted_str_new2(str) __extension__ ( \
{ \
(__builtin_constant_p(str)) ? \
rb_tainted_str_new(str, strlen(str)) : \
rb_tainted_str_new2(str); \
})
-#define rb_usascii_str_new2(str) ( \
+#define rb_usascii_str_new2(str) __extension__ ( \
{ \
(__builtin_constant_p(str)) ? \
rb_usascii_str_new(str, strlen(str)) : \