summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.h
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2013-11-15 17:53:17 -0500
committerNeil Moore <neil@s-z.org>2013-11-15 17:53:17 -0500
commit32c45a74182eceb672cbe0018c2328c4f9a22876 (patch)
tree5d16f4b7d6568e71f4286acb82fbd0b4a832ce19 /crawl-ref/source/show.h
parente7b96ffa70ca93a3cea9e2cead6f40085a6a2d68 (diff)
downloadcrawl-ref-32c45a74182eceb672cbe0018c2328c4f9a22876.tar.gz
crawl-ref-32c45a74182eceb672cbe0018c2328c4f9a22876.zip
Manually fix a few more instances of return (...)
These weren't caught by util/unbrace because they weren't at the beginning of the line.
Diffstat (limited to 'crawl-ref/source/show.h')
-rw-r--r--crawl-ref/source/show.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/show.h b/crawl-ref/source/show.h
index 22662c924f..86580c8ced 100644
--- a/crawl-ref/source/show.h
+++ b/crawl-ref/source/show.h
@@ -49,7 +49,7 @@ struct show_type
show_type(show_item_type itemtype);
show_type(monster_type montype);
- operator bool() const { return (cls != SH_NOTHING); }
+ operator bool() const { return cls != SH_NOTHING; }
bool operator < (const show_type &other) const;
bool is_cleanable_monster() const;