diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-10 02:52:38 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-10 02:52:38 -0400 |
commit | fd2e6c25024eefa5dfc36bed892360451862cb88 (patch) | |
tree | 4fb09cea0a20569fca59eedd73896e92b10565ad /src/op.h | |
parent | ba02f0a45036a1f9c64cd56533990d3284bcc4cf (diff) | |
download | fork-ledger-fd2e6c25024eefa5dfc36bed892360451862cb88.tar.gz fork-ledger-fd2e6c25024eefa5dfc36bed892360451862cb88.tar.bz2 fork-ledger-fd2e6c25024eefa5dfc36bed892360451862cb88.zip |
Ledger now builds without any significant warnings, except for one file. Some
of the warnings had to be temporarily disabled, but will be checked again once
the code has moved into master.
Diffstat (limited to 'src/op.h')
-rw-r--r-- | src/op.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -278,15 +278,15 @@ public: scope_t& scope; const bool relaxed; const ptr_op_t& op_to_find; - unsigned long * start_pos; - unsigned long * end_pos; + ostream_pos_type * start_pos; + ostream_pos_type * end_pos; // jww (2008-08-01): Is a scope needed here? - print_context_t(scope_t& _scope, - const bool _relaxed = false, - const ptr_op_t& _op_to_find = ptr_op_t(), - unsigned long * _start_pos = NULL, - unsigned long * _end_pos = NULL) + print_context_t(scope_t& _scope, + const bool _relaxed = false, + const ptr_op_t& _op_to_find = ptr_op_t(), + ostream_pos_type * _start_pos = NULL, + ostream_pos_type * _end_pos = NULL) : scope(_scope), relaxed(_relaxed), op_to_find(_op_to_find), start_pos(_start_pos), end_pos(_end_pos) {} }; |