Merge pull request #431 from justinkb/master

Fix include in test_document.cpp when building against libc++. The _GLIBCXX_HAVE_UNISTD_H relies on pugixml and its tests being built against libstdc++, with LLVM's libc++ this won't be defined
This commit is contained in:
Arseny Kapoulkine 2021-06-30 14:28:44 -07:00 committed by GitHub
commit 657619962f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,12 +22,11 @@
# include <stdexcept>
#endif
#ifdef __MINGW32__
# include <io.h> // for unlink in C++0x mode
#endif
#if defined(__CELLOS_LV2__) || defined(ANDROID) || defined(_GLIBCXX_HAVE_UNISTD_H) || defined(__APPLE__)
# include <unistd.h> // for unlink
// for unlink
#ifdef _WIN32
# include <io.h>
#else
# include <unistd.h>
#endif
using namespace pugi;