summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-05-25 23:39:48 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-05-26 00:23:02 +0200
commit2ea2ce9d9897afa31420d5b998d1162828d0ee2e (patch)
tree54afd85220047ecf5aa67b19ad52aedf6b2ac252 /crawl-ref/source/hiscores.h
parent6de4c69b049eb22ebba4eaf455e94ac9671b7f22 (diff)
downloadcrawl-ref-2ea2ce9d9897afa31420d5b998d1162828d0ee2e.tar.gz
crawl-ref-2ea2ce9d9897afa31420d5b998d1162828d0ee2e.zip
Kill some longs.
In portable code, basically every use of long or %ld/%lu/%lx is a bug. A legitimate use in Crawl is the bit array: storing it in-memory should be preferably done a word at a time.
Diffstat (limited to 'crawl-ref/source/hiscores.h')
-rw-r--r--crawl-ref/source/hiscores.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/crawl-ref/source/hiscores.h b/crawl-ref/source/hiscores.h
index 49dcb66645..aef8773832 100644
--- a/crawl-ref/source/hiscores.h
+++ b/crawl-ref/source/hiscores.h
@@ -43,7 +43,6 @@ public:
std::string str_field(const std::string &) const;
int int_field(const std::string &) const;
- long long_field(const std::string &) const;
private:
void map_fields() const;