From 5d10b212ecebb15fb1463edc08c725d8e29fa44a Mon Sep 17 00:00:00 2001 From: darkf Date: Mon, 29 Dec 2014 19:59:14 -0800 Subject: Fix MSVC-related #defines and add CMakeLists comment --- src/common/log.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/common/log.h') diff --git a/src/common/log.h b/src/common/log.h index c6a02355..667f2fbb 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -8,7 +8,7 @@ #include "common/msg_handler.h" #include "common/logging/log.h" -#ifdef MSVC_VER +#ifdef _MSC_VER #ifndef __func__ #define __func__ __FUNCTION__ #endif @@ -40,7 +40,7 @@ #define _assert_(_a_) _dbg_assert_(MASTER_LOG, _a_) #ifndef GEKKO -#ifdef _WIN32 +#ifdef _MSC_VER #define _assert_msg_(_t_, _a_, _fmt_, ...) \ if (!(_a_)) {\ if (!PanicYesNo(_fmt_, __VA_ARGS__)) {Crash();} \ -- cgit v1.2.3