summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-21 00:12:45 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-21 00:12:45 +0100
commitcab063e5e304ab59f2f5604f0c0a83be371e7a3e (patch)
treea77303942b9945a9b687daba84c5e43430a4bed6 /crawl-ref/source/store.h
parentd2bcb779ddd4339aa77e30d1f6d80a7a98cc6b81 (diff)
downloadcrawl-ref-cab063e5e304ab59f2f5604f0c0a83be371e7a3e.tar.gz
crawl-ref-cab063e5e304ab59f2f5604f0c0a83be371e7a3e.zip
Drop double newlines where they seem to serve no purpose.
Sometimes, they're there to emphasize a break between two sections of code, which is good. In a majority of cases, though, they're just inconsistent.
Diffstat (limited to 'crawl-ref/source/store.h')
-rw-r--r--crawl-ref/source/store.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/crawl-ref/source/store.h b/crawl-ref/source/store.h
index 2b8a16a25a..046b451aea 100644
--- a/crawl-ref/source/store.h
+++ b/crawl-ref/source/store.h
@@ -61,7 +61,6 @@ enum store_flag_type
SFLAG_NO_ERASE = (1 << 3),
};
-
typedef union StoreUnion StoreUnion;
union StoreUnion
{
@@ -74,7 +73,6 @@ union StoreUnion
void* ptr;
};
-
class CrawlStoreValue
{
public:
@@ -245,7 +243,6 @@ protected:
friend class CrawlVector;
};
-
// By default a hash table's value data types are heterogeneous. To
// make it homogeneous (which causes dynamic type checking) you have
// to give a type to the hash table constructor; once it's been