mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Clarify the intention of the include guard
This was a leftover of 27d5af59a3
.
This commit is contained in:
parent
9eb34c2c9e
commit
7ade7a8603
1 changed files with 2 additions and 2 deletions
|
@ -1046,7 +1046,7 @@ compile_prelude(FILE *f)
|
||||||
const char *s = pch_file;
|
const char *s = pch_file;
|
||||||
const char *e = header_name_end(s);
|
const char *e = header_name_end(s);
|
||||||
|
|
||||||
# ifndef _MSC_VER // Visual Studio doesn't expect macro changes around headers. Anyway we don't support compaction there...
|
# if USE_JIT_COMPACTION
|
||||||
fprintf(f, "#ifndef MJIT_PCH\n");
|
fprintf(f, "#ifndef MJIT_PCH\n");
|
||||||
fprintf(f, "#define MJIT_PCH\n");
|
fprintf(f, "#define MJIT_PCH\n");
|
||||||
# endif
|
# endif
|
||||||
|
@ -1060,7 +1060,7 @@ compile_prelude(FILE *f)
|
||||||
fputc(*s, f);
|
fputc(*s, f);
|
||||||
}
|
}
|
||||||
fprintf(f, "\"\n");
|
fprintf(f, "\"\n");
|
||||||
# ifndef _MSC_VER
|
# if USE_JIT_COMPACTION
|
||||||
fprintf(f, "#endif\n");
|
fprintf(f, "#endif\n");
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue