Code cleanup: removing common.h

This commit is contained in:
Ben Vanik
2015-05-02 01:25:59 -07:00
parent 727ffaa122
commit 30f7effa73
147 changed files with 120 additions and 170 deletions

View File

@@ -152,6 +152,11 @@ XE_CPU: 32BIT | 64BIT | BIGENDIAN | LITTLEENDIAN
#include <x86intrin.h>
#endif // XE_COMPILER_MSVC
#if XE_LIKE_WIN32
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#endif // XE_LIKE_WIN32
namespace poly {
#if XE_LIKE_WIN32

View File

@@ -16,12 +16,6 @@
#include "poly/platform.h"
#if XE_LIKE_WIN32
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#define snprintf _snprintf
#endif // XE_LIKE_WIN32
namespace poly {
std::string to_string(const std::wstring& source);