summaryrefslogtreecommitdiff
path: root/src/textual.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-03-07 00:32:56 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-03-07 00:32:56 -0600
commit9ea5b608991ee1769e18d95c2b2dce5a6f4202d5 (patch)
tree5862cc6c177cf7d873418512c2b82410b2ce62c2 /src/textual.cc
parent17782c9cfea390782096bd8b1c8765c23182756e (diff)
downloadfork-ledger-9ea5b608991ee1769e18d95c2b2dce5a6f4202d5.tar.gz
fork-ledger-9ea5b608991ee1769e18d95c2b2dce5a6f4202d5.tar.bz2
fork-ledger-9ea5b608991ee1769e18d95c2b2dce5a6f4202d5.zip
Whitespace fixes
Diffstat (limited to 'src/textual.cc')
-rw-r--r--src/textual.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/textual.cc b/src/textual.cc
index 258a4d76..866a99d6 100644
--- a/src/textual.cc
+++ b/src/textual.cc
@@ -71,22 +71,22 @@ namespace {
class instance_t : public noncopyable, public scope_t
{
-
public:
- parse_context_stack_t& context_stack;
- parse_context_t& context;
- std::istream& in;
- instance_t * parent;
-
+ parse_context_stack_t& context_stack;
+ parse_context_t& context;
+ std::istream& in;
+ instance_t * parent;
std::list<application_t> apply_stack;
#if defined(TIMELOG_SUPPORT)
- time_log_t timelog;
+ time_log_t timelog;
#endif
instance_t(parse_context_stack_t& _context_stack,
- parse_context_t& _context, instance_t * _parent = NULL)
+ parse_context_t& _context,
+ instance_t * _parent = NULL)
: context_stack(_context_stack), context(_context),
- in(*context.stream.get()), parent(_parent), timelog(context) {}
+ in(*context.stream.get()), parent(_parent),
+ timelog(context) {}
virtual string description() {
return _("textual parser");