summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/data-index.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-09-07 18:12:24 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-09-08 02:44:19 +0200
commit997da1ad7d76c471901b834b70f686c578d913a6 (patch)
tree3b67f7581d2e97c5b79e491353ca1b156ea50d9a /crawl-ref/source/data-index.h
parent83fa91821cab56fbf9b0694bae8784ad1c1baafd (diff)
downloadcrawl-ref-997da1ad7d76c471901b834b70f686c578d913a6.tar.gz
crawl-ref-997da1ad7d76c471901b834b70f686c578d913a6.zip
Drop some useless parentheses.
Diffstat (limited to 'crawl-ref/source/data-index.h')
-rw-r--r--crawl-ref/source/data-index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/data-index.h b/crawl-ref/source/data-index.h
index 5775043b11..dd80436c99 100644
--- a/crawl-ref/source/data-index.h
+++ b/crawl-ref/source/data-index.h
@@ -17,7 +17,7 @@ public:
{
ASSERT_RANGE(key, 0, NMax);
check_index();
- return (&pop[index[key]]);
+ return &pop[index[key]];
}
bool contains(TKey key)