remove unused field; cleanup a dumb definition

This commit is contained in:
DarthArgus
2016-03-24 16:05:08 +00:00
parent 89f2b55420
commit 501ba0b0f4
2 changed files with 2 additions and 6 deletions
@@ -19,13 +19,10 @@
#include <climits>
const char WIN32_PATH_SEPARATOR = '\\';
const char LINUX_PATH_SEPARATOR = '/';
#if defined(WIN32)
const char PATH_SEPARATOR = WIN32_PATH_SEPARATOR;
const char PATH_SEPARATOR = '\\';
#elif defined(linux)
const char PATH_SEPARATOR = LINUX_PATH_SEPARATOR;
const char PATH_SEPARATOR = '/';
#else
#error unknown OS
#endif