summaryrefslogtreecommitdiff
path: root/src/xml.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-01-29 18:23:57 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-01-29 18:23:57 -0400
commit05c77351e458c08873c813264005f61f828b5383 (patch)
treefa83d3826d8c113b5ec273671ce6cab3d9fe5388 /src/xml.h
parent119b5dc1975bfc00fb3f376e6ba28594dee12583 (diff)
downloadledger-05c77351e458c08873c813264005f61f828b5383.tar.gz
ledger-05c77351e458c08873c813264005f61f828b5383.tar.bz2
ledger-05c77351e458c08873c813264005f61f828b5383.zip
Stopped using the generic "unsigned int" in favor of more specific types.
Diffstat (limited to 'src/xml.h')
-rw-r--r--src/xml.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xml.h b/src/xml.h
index 8e1c5af7..a8fa242e 100644
--- a/src/xml.h
+++ b/src/xml.h
@@ -75,11 +75,11 @@ class xml_parser_t : public journal_t::parser_t
public:
virtual bool test(std::istream& in) const;
- virtual unsigned int parse(std::istream& in,
- session_t& session,
- journal_t& journal,
- account_t * master = NULL,
- const path * original_file = NULL);
+ virtual std::size_t parse(std::istream& in,
+ session_t& session,
+ journal_t& journal,
+ account_t * master = NULL,
+ const path * original_file = NULL);
};
class format_xml_entries : public format_entries