summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/tags.h
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/tags.h')
-rw-r--r--crawl-ref/source/tags.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/crawl-ref/source/tags.h b/crawl-ref/source/tags.h
index 88fc8193bd..3dec500f11 100644
--- a/crawl-ref/source/tags.h
+++ b/crawl-ref/source/tags.h
@@ -123,17 +123,17 @@ private:
friend void marshallEnumVal(writer&, const enum_info*, int);
};
-void marshallByte (writer &, int8_t );
-void marshallShort (writer &, int16_t );
-void marshallInt (writer &, int32_t );
-void marshallFloat (writer &, float );
-void marshallUByte (writer &, uint8_t );
-void marshallBoolean (writer &, bool );
+void marshallByte (writer &, int8_t);
+void marshallShort (writer &, int16_t);
+void marshallInt (writer &, int32_t);
+void marshallFloat (writer &, float);
+void marshallUByte (writer &, uint8_t);
+void marshallBoolean (writer &, bool);
void marshallString (writer &, const std::string &, int maxSize = 0);
void marshallString4 (writer &, const std::string &);
void marshallCoord (writer &, const coord_def &);
void marshallItem (writer &, const item_def &);
-void marshallMonster (writer &, const monster& );
+void marshallMonster (writer &, const monster&);
void marshallMonsterInfo (writer &, const monster_info &);
void marshallMapCell (writer &, const map_cell &);
@@ -237,7 +237,7 @@ void tag_write(tag_type tagID, writer &outf);
int write2(FILE * file, const void *buffer, unsigned int count);
int read2(FILE * file, void *buffer, unsigned int count);
-std::string make_date_string( time_t in_date );
-time_t parse_date_string( char[20] );
+std::string make_date_string(time_t in_date);
+time_t parse_date_string(char[20]);
#endif // TAGS_H