summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.h
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-13 03:18:38 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-13 06:23:13 -0700
commit475091c67389ed61cf7589c9b7037fbd8c916b70 (patch)
tree9e7a8d3323b30a95896fdcc89249ebe2b69a480e /crawl-ref/source/store.h
parent18bf8b6c7b04fe232d240e6677f39de09d7a590f (diff)
downloadcrawl-ref-475091c67389ed61cf7589c9b7037fbd8c916b70.tar.gz
crawl-ref-475091c67389ed61cf7589c9b7037fbd8c916b70.zip
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 <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/store.h')
-rw-r--r--crawl-ref/source/store.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/store.h b/crawl-ref/source/store.h
index d4aed1cd6b..7076b3812f 100644
--- a/crawl-ref/source/store.h
+++ b/crawl-ref/source/store.h
@@ -166,7 +166,7 @@ public:
const CrawlStoreValue &operator [] (const vec_size &index) const;
// Typecast operators
-#if _MSC_VER
+#ifdef TARGET_COMPILER_VC
operator bool&();
operator char&();
operator short&();