summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.h
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-12-29 14:16:22 -0800
committerSteven Noonan <steven@uplinklabs.net>2009-12-29 17:07:38 -0800
commit2aaee630b73f2556e79aeb37518d98f229909ea3 (patch)
tree9dbcc76a7e38b8cebe9f9aa9c7d61bd227b8405b /crawl-ref/source/view.h
parent80cea433b4d6e3b13bbc624f82e2de4e5dfd4360 (diff)
downloadcrawl-ref-2aaee630b73f2556e79aeb37518d98f229909ea3.tar.gz
crawl-ref-2aaee630b73f2556e79aeb37518d98f229909ea3.zip
headers: fix inconsistent struct/class forward declarations
Some classes were erroneously referred to as 'struct' in forward declarations, and vice versa. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/view.h')
-rw-r--r--crawl-ref/source/view.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/view.h b/crawl-ref/source/view.h
index 70029c000d..33a525cba2 100644
--- a/crawl-ref/source/view.h
+++ b/crawl-ref/source/view.h
@@ -25,7 +25,7 @@ bool magic_mapping(int map_radius, int proportion, bool suppress_msg,
coord_def origin = coord_def(-1, -1));
void reautomap_level();
-class level_pos;
+struct level_pos;
void show_map( level_pos &spec_place, bool travel_mode, bool allow_esc = false );
bool is_feature(int feature, const coord_def& where);