From 475091c67389ed61cf7589c9b7037fbd8c916b70 Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Tue, 13 Oct 2009 03:18:38 -0700 Subject: platform detection: clean up abuse of '_MSC_VER' macro Use TARGET_COMPILER_VC instead, unless you need to find the Visual C++ version information. Signed-off-by: Steven Noonan --- crawl-ref/source/database.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/database.cc') diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc index 1ae1224d46..7584109827 100644 --- a/crawl-ref/source/database.cc +++ b/crawl-ref/source/database.cc @@ -14,7 +14,7 @@ REVISION("$Rev$"); #include #include #include -#if !_MSC_VER +#ifndef TARGET_COMPILER_VC #include #endif -- cgit v1.2.3-54-g00ecf