summaryrefslogtreecommitdiff
path: root/zen/debug_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/debug_log.h')
-rw-r--r--zen/debug_log.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/zen/debug_log.h b/zen/debug_log.h
index 45283da5..6ee44ff5 100644
--- a/zen/debug_log.h
+++ b/zen/debug_log.h
@@ -25,15 +25,10 @@ namespace zen
{
#ifdef FFS_WIN
const char ZEN_FILE_NAME_SEPARATOR = '\\';
-
-#elif defined FFS_LINUX
+#elif defined FFS_LINUX || defined FFS_MAC
const char ZEN_FILE_NAME_SEPARATOR = '/';
-
-#else
-#error specify platform!
#endif
-
class DebugLog
{
public:
bgstack15