// Must include something to test for glibc
#include <cstdlib>
-#if !defined(WIN32) && defined(__GLIBC__)
+#if !defined(_WIN32) && defined(__GLIBC__)
#include <dlfcn.h>
#include <execinfo.h>
#endif
Backtrace Backtrace::create()
{
-#if !defined(WIN32) && defined(__GLIBC__)
+#if !defined(_WIN32) && defined(__GLIBC__)
void *addresses[50];
int count = ::backtrace(addresses, 50);
namespace {
-#ifdef WIN32
+#ifdef _WIN32
inline bool is_windows_drive(const std::string &p)
{ return (p.size()==2 && ((p[0]>='A' && p[0]<='Z') || (p[0]>='a' && p[0]<='z')) && p[1]==':'); }
#endif
bool Path::is_absolute() const
{
-#ifdef WIN32
+#ifdef _WIN32
if(is_windows_drive((*this)[0]))
return true;
#endif
if(comp.size()==1 && (comp[0]=='/' || comp[0]=='\\'))
{
// Replace the path with the root directory
-#ifdef WIN32
+#ifdef _WIN32
string::size_type slash = (separators.empty() ? string::npos : separators.front());
if(is_windows_drive(path.substr(0, slash)))
{
separators.push_back(0);
}
}
-#ifdef WIN32
+#ifdef _WIN32
else if(is_windows_drive(comp))
{
path = comp;
// .. in root directory is a no-op
else if(path.size()==1 && path[0]==DIRSEP)
;
-#ifdef WIN32
+#ifdef _WIN32
else if(is_windows_drive(path))
;
#endif
bool Path::operator==(const Path &other) const
{
-#ifdef WIN32
+#ifdef _WIN32
return strcasecmp(path, other.path)==0;
#else
return path==other.path;
bool Path::operator<(const Path &other) const
{
-#ifdef WIN32
+#ifdef _WIN32
return strcasecmp(path, other.path)<0;
#else
return path<other.path;
bool Path::operator>(const Path &other) const
{
-#ifdef WIN32
+#ifdef _WIN32
return strcasecmp(path, other.path)>0;
#else
return path>other.path;
Private(const Private &);
~Private();
-#ifndef WIN32
+#ifndef _WIN32
/* This is here because it needs access to private members of Stat, but we
can't expose the system stat struct in the public header */
static Stat from_struct_stat(const struct stat &);