summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-10-24 02:59:06 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-10-24 02:59:06 +0200
commit2380f20c02f590f058be0f02bb8f96929edb713d (patch)
tree4981deff872fddda0199a61a3ef257e6477e5fb9 /crawl-ref/source/tilepick.h
parent4f2462a789efc631ac88149b621ac0d477007ee2 (diff)
downloadcrawl-ref-2380f20c02f590f058be0f02bb8f96929edb713d.tar.gz
crawl-ref-2380f20c02f590f058be0f02bb8f96929edb713d.zip
Shut up a bogus clang warning.
Forward declarations of "struct" and "class" are the same, the only difference between the two is implicit "public"/"private" at the start of an actual definition.
Diffstat (limited to 'crawl-ref/source/tilepick.h')
-rw-r--r--crawl-ref/source/tilepick.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tilepick.h b/crawl-ref/source/tilepick.h
index c2fba86a72..76cdcee3d7 100644
--- a/crawl-ref/source/tilepick.h
+++ b/crawl-ref/source/tilepick.h
@@ -13,7 +13,7 @@ struct cloud_info;
struct coord_def;
struct item_def;
class monster;
-class monster_info;
+struct monster_info;
struct show_type;
bool is_door_tile(tileidx_t tile);