summaryrefslogtreecommitdiff
path: root/src/expr.cc
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/expr.cc
parent119b5dc1975bfc00fb3f376e6ba28594dee12583 (diff)
downloadfork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.gz
fork-ledger-05c77351e458c08873c813264005f61f828b5383.tar.bz2
fork-ledger-05c77351e458c08873c813264005f61f828b5383.zip
Stopped using the generic "unsigned int" in favor of more specific types.
Diffstat (limited to 'src/expr.cc')
-rw-r--r--src/expr.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.cc b/src/expr.cc
index e03c2710..e71abfd2 100644
--- a/src/expr.cc
+++ b/src/expr.cc
@@ -86,7 +86,7 @@ expr_t& expr_t::operator=(const expr_t& _expr)
return *this;
}
-void expr_t::parse(const string& _str, const unsigned int flags)
+void expr_t::parse(const string& _str, const uint32_t flags)
{
if (! parser.get())
throw_(parse_error, "Value expression parser not initialized");
@@ -96,7 +96,7 @@ void expr_t::parse(const string& _str, const unsigned int flags)
compiled = false;
}
-void expr_t::parse(std::istream& in, const unsigned int flags,
+void expr_t::parse(std::istream& in, const uint32_t flags,
const string * original_string)
{
if (! parser.get())