aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-06 17:47:24 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-09-06 17:47:24 +0900
commit99bfa6c16562f7af7fb6daf3cf89680ef30d4163 (patch)
tree1f65f5a32ffbdf0716d6868d3bf374c6c073284e /win32
parent1851dc269cb7a957fcb1fe2e97b7b76c2a52d096 (diff)
downloadruby-99bfa6c16562f7af7fb6daf3cf89680ef30d4163.tar.gz
Try to fix compile error on win32
https://github.com/ruby/ruby/runs/213995386#step:7:810 ``` cxxanyargs.cpp C:\Program Files (x86)\Windows Kits\10\include\10.0.17763.0\ucrt\corecrt_malloc.h(54): error C2485: '__restrict': unrecognized extended attribute ```
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile.sub2
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index a990a557ea..13463d3d90 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -861,11 +861,13 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
#define RUBY_LONGJMP(env,val) longjmp(env,val)
#define RUBY_JMP_BUF jmp_buf
#define inline __inline
+#ifndef __cplusplus
!if $(MSC_VER) >= 1800
#define restrict __restrict
!else
#define restrict /* not supported */
!endif
+#endif
#define NEED_IO_SEEK_BETWEEN_RW 1
!if "$(MACHINE)" == "x86" || "$(ARCH)" == "x64"
#define STACK_GROW_DIRECTION -1