summaryrefslogtreecommitdiff
path: root/valexpr.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-08-17 16:10:48 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-08-17 16:10:48 -0400
commit019a42f199494c86b0aeea59caf9421d96a2c009 (patch)
tree33174f3a5d8cb742dd2e704aedb175fe94c60d82 /valexpr.cc
parent048d59afbccb859186112f2e6079d85b258d6e6b (diff)
downloadfork-ledger-019a42f199494c86b0aeea59caf9421d96a2c009.tar.gz
fork-ledger-019a42f199494c86b0aeea59caf9421d96a2c009.tar.bz2
fork-ledger-019a42f199494c86b0aeea59caf9421d96a2c009.zip
fixes
Diffstat (limited to 'valexpr.cc')
-rw-r--r--valexpr.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/valexpr.cc b/valexpr.cc
index 74d4587b..5dfac952 100644
--- a/valexpr.cc
+++ b/valexpr.cc
@@ -323,16 +323,6 @@ void value_expr_t::compute(balance_t& result, const details_t& details) const
}
}
-inline char peek_next_nonws(std::istream& in)
-{
- char c = in.peek();
- while (! in.eof() && std::isspace(c) && c != '\n') {
- in.get(c);
- c = in.peek();
- }
- return c;
-}
-
value_expr_t * parse_value_term(std::istream& in);
inline value_expr_t * parse_value_term(const char * p) {