1
0
Fork 0
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:
Takashi Kokubun 2020-11-21 23:44:48 -08:00
parent 9eb34c2c9e
commit 7ade7a8603
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -1046,7 +1046,7 @@ compile_prelude(FILE *f)
const char *s = pch_file;
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, "#define MJIT_PCH\n");
# endif
@ -1060,7 +1060,7 @@ compile_prelude(FILE *f)
fputc(*s, f);
}
fprintf(f, "\"\n");
# ifndef _MSC_VER
# if USE_JIT_COMPACTION
fprintf(f, "#endif\n");
# endif
#endif