summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-12-15 08:49:56 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-12-15 21:53:37 +0100
commitfcfcbb18f5548e0767a65f984c717a57e3678cc1 (patch)
tree697b8428380f51094f27b91680fb188f815778bd /crawl-ref/source/tags.h
parentc04269391806dd643530cd03920556a6b340cebe (diff)
downloadcrawl-ref-fcfcbb18f5548e0767a65f984c717a57e3678cc1.tar.gz
crawl-ref-fcfcbb18f5548e0767a65f984c717a57e3678cc1.zip
Make a few symbols static.
Diffstat (limited to 'crawl-ref/source/tags.h')
-rw-r--r--crawl-ref/source/tags.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/crawl-ref/source/tags.h b/crawl-ref/source/tags.h
index 55aab9c6b9..637852ab10 100644
--- a/crawl-ref/source/tags.h
+++ b/crawl-ref/source/tags.h
@@ -85,8 +85,6 @@ void marshallString4 (writer &, const string &);
void marshallCoord (writer &, const coord_def &);
void marshallItem (writer &, const item_def &, bool info = false);
void marshallMonster (writer &, const monster&);
-void marshallMonsterInfo (writer &, const monster_info &);
-void marshallMapCell (writer &, const map_cell &);
void marshall_level_id(writer& th, const level_id& id);
void marshallUnsigned(writer& th, uint64_t v);
void marshallSigned(writer& th, int64_t v);
@@ -144,8 +142,6 @@ void unmarshallString4 (reader &, string&);
coord_def unmarshallCoord (reader &);
void unmarshallItem (reader &, item_def &item);
void unmarshallMonster (reader &, monster& item);
-void unmarshallMonsterInfo (reader &, monster_info &mi);
-void unmarshallMapCell (reader &, map_cell& cell);
level_id unmarshall_level_id(reader& th);
uint64_t unmarshallUnsigned(reader& th);