mirror of https://github.com/odrling/Aegisub
Add #ifdef __cplusplus to the precompiled headers to make Xcode happy
This commit is contained in:
parent
50dfa1cd42
commit
421d5ca52e
|
@ -1,3 +1,4 @@
|
||||||
|
#ifdef __cplusplus
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include "../acconf.h"
|
#include "../acconf.h"
|
||||||
#endif
|
#endif
|
||||||
|
@ -39,3 +40,4 @@
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#undef BOOST_NO_SCOPED_ENUMS
|
#undef BOOST_NO_SCOPED_ENUMS
|
||||||
#include <boost/interprocess/streams/bufferstream.hpp>
|
#include <boost/interprocess/streams/bufferstream.hpp>
|
||||||
|
#endif
|
||||||
|
|
|
@ -38,6 +38,8 @@
|
||||||
/// @note Make sure that you disable use of precompiled headers on md5.c and
|
/// @note Make sure that you disable use of precompiled headers on md5.c and
|
||||||
/// MatroskaParser.c, as well as any possible future .c files.
|
/// MatroskaParser.c, as well as any possible future .c files.
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
|
||||||
// Block msvc from complaining about not using msvc-specific versions for
|
// Block msvc from complaining about not using msvc-specific versions for
|
||||||
// insecure C functions.
|
// insecure C functions.
|
||||||
#ifdef _CRT_SECURE_NO_WARNINGS
|
#ifdef _CRT_SECURE_NO_WARNINGS
|
||||||
|
@ -214,3 +216,5 @@
|
||||||
#ifndef _CRT_SECURE_NO_WARNINGS_DEFINED
|
#ifndef _CRT_SECURE_NO_WARNINGS_DEFINED
|
||||||
#undef _CRT_SECURE_NO_WARNINGS
|
#undef _CRT_SECURE_NO_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue