summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/store.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 22:31:01 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-26 22:31:01 +0000
commitcc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7 (patch)
tree1cfe922ec090a5eef886ca592616dab1e8190997 /crawl-ref/source/store.cc
parent54aec4d505c1ae364d89c2b464b24204c24e1f96 (diff)
downloadcrawl-ref-cc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7.tar.gz
crawl-ref-cc279c7aa6e04db390bed9bc28f3d2f48f2ea6d7.zip
Kill hard tabs, and add whitespace fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6158 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/store.cc')
-rw-r--r--crawl-ref/source/store.cc20
1 files changed, 10 insertions, 10 deletions
diff --git a/crawl-ref/source/store.cc b/crawl-ref/source/store.cc
index eadfc1a5d9..c64345c9c6 100644
--- a/crawl-ref/source/store.cc
+++ b/crawl-ref/source/store.cc
@@ -772,16 +772,16 @@ const CrawlStoreValue &CrawlStoreValue::operator
/////////////////////
// Typecast operators
#if _MSC_VER
-CrawlStoreValue::operator bool&() { return get_bool(); }
-CrawlStoreValue::operator char&() { return get_byte(); }
-CrawlStoreValue::operator short&() { return get_short(); }
-CrawlStoreValue::operator float&() { return get_float(); }
-CrawlStoreValue::operator long&() { return get_long(); }
-CrawlStoreValue::operator std::string&() { return get_string(); }
-CrawlStoreValue::operator coord_def&() { return get_coord(); }
-CrawlStoreValue::operator CrawlHashTable&() { return get_table(); }
-CrawlStoreValue::operator CrawlVector&() { return get_vector(); }
-CrawlStoreValue::operator item_def&() { return get_item(); }
+CrawlStoreValue::operator bool&() { return get_bool(); }
+CrawlStoreValue::operator char&() { return get_byte(); }
+CrawlStoreValue::operator short&() { return get_short(); }
+CrawlStoreValue::operator float&() { return get_float(); }
+CrawlStoreValue::operator long&() { return get_long(); }
+CrawlStoreValue::operator std::string&() { return get_string(); }
+CrawlStoreValue::operator coord_def&() { return get_coord(); }
+CrawlStoreValue::operator CrawlHashTable&() { return get_table(); }
+CrawlStoreValue::operator CrawlVector&() { return get_vector(); }
+CrawlStoreValue::operator item_def&() { return get_item(); }
#else
&CrawlStoreValue::operator bool()
{