summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/map_knowledge.h
diff options
context:
space:
mode:
authorPete Hurst <pete@streamuniverse.tv>2013-05-19 21:22:45 +0100
committerPete Hurst <pete@streamuniverse.tv>2013-05-19 23:03:23 +0100
commit12d549bc48b2805d6af621ff0b1b7648b42a3402 (patch)
tree19dc3c1681fabcc1005ba5bad2edb658448b929a /crawl-ref/source/map_knowledge.h
parent218aaf8fcc8bec66a68827f3696b94f80d35f3b2 (diff)
downloadcrawl-ref-12d549bc48b2805d6af621ff0b1b7648b42a3402.tar.gz
crawl-ref-12d549bc48b2805d6af621ff0b1b7648b42a3402.zip
Remove an #ifdef applying to old MSVC versions
Diffstat (limited to 'crawl-ref/source/map_knowledge.h')
-rw-r--r--crawl-ref/source/map_knowledge.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/map_knowledge.h b/crawl-ref/source/map_knowledge.h
index 2b5bd99ee9..90c0fd8451 100644
--- a/crawl-ref/source/map_knowledge.h
+++ b/crawl-ref/source/map_knowledge.h
@@ -286,12 +286,7 @@ struct map_cell
public:
uint32_t flags; // Flags describing the mappedness of this square.
private:
-//TODO fix when the MSVC is standard-compliant.
-#ifdef TARGET_COMPILER_VC
- dungeon_feature_type _feat;
-#else
dungeon_feature_type _feat:8;
-#endif
colour_t _feat_colour;
cloud_info* _cloud;
item_info* _item;