diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-21 02:09:48 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-21 02:09:48 -0600 |
commit | 697d097594c158c595910e7f56bf09bdb894abf8 (patch) | |
tree | 038426f3ca09d8b2cc932e7f10b50b1212594ec0 /src/scope.cc | |
parent | 902673a199ccc1716c93543d77bd782cbbe25ead (diff) | |
download | fork-ledger-697d097594c158c595910e7f56bf09bdb894abf8.tar.gz fork-ledger-697d097594c158c595910e7f56bf09bdb894abf8.tar.bz2 fork-ledger-697d097594c158c595910e7f56bf09bdb894abf8.zip |
Whitespace fix
Diffstat (limited to 'src/scope.cc')
-rw-r--r-- | src/scope.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scope.cc b/src/scope.cc index 95347c8d..2b9851b0 100644 --- a/src/scope.cc +++ b/src/scope.cc @@ -88,8 +88,7 @@ value_t& call_scope_t::resolve(const std::size_t index, value = as_expr(value)->calc(scope, locus, depth); if (required && ! value.is_type(context)) throw_(calc_error, _("Expected %1 for argument %2, but received %3") - << value.label(context) << index - << value.label()); + << value.label(context) << index << value.label()); } return value; } |