From 36c838c0e22455445a3349c19f8ded1d99e2abcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 23 Sep 2009 22:16:46 +0200 Subject: [PATCH] Replaced UNIT_TESTING ifdef with _MSC_VER --- src/checkmemoryleak.h | 2 +- src/tokenize.h | 2 +- testrunner.vcproj | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/checkmemoryleak.h b/src/checkmemoryleak.h index d0cbbe7e8..3215b14db 100644 --- a/src/checkmemoryleak.h +++ b/src/checkmemoryleak.h @@ -161,7 +161,7 @@ public: void check(); -#ifndef UNIT_TESTING +#ifndef _MSC_VER private: #endif diff --git a/src/tokenize.h b/src/tokenize.h index 0e87f6a96..438fdd34b 100644 --- a/src/tokenize.h +++ b/src/tokenize.h @@ -112,7 +112,7 @@ public: */ std::map _classInfoList; -#ifndef UNIT_TESTING +#ifndef _MSC_VER private: #endif diff --git a/testrunner.vcproj b/testrunner.vcproj index 18b9811b1..138e73dd3 100644 --- a/testrunner.vcproj +++ b/testrunner.vcproj @@ -1,7 +1,7 @@