Whitespace fixes

This commit is contained in:
John Wiegley 2012-03-07 00:32:56 -06:00
parent 17782c9cfe
commit 9ea5b60899

View file

@ -71,22 +71,22 @@ namespace {
class instance_t : public noncopyable, public scope_t class instance_t : public noncopyable, public scope_t
{ {
public: public:
parse_context_stack_t& context_stack; parse_context_stack_t& context_stack;
parse_context_t& context; parse_context_t& context;
std::istream& in; std::istream& in;
instance_t * parent; instance_t * parent;
std::list<application_t> apply_stack; std::list<application_t> apply_stack;
#if defined(TIMELOG_SUPPORT) #if defined(TIMELOG_SUPPORT)
time_log_t timelog; time_log_t timelog;
#endif #endif
instance_t(parse_context_stack_t& _context_stack, 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), : 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() { virtual string description() {
return _("textual parser"); return _("textual parser");