summaryrefslogtreecommitdiff
path: root/src/account.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-12 22:16:38 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-13 01:03:48 -0400
commit536e3e73228b6168437704ede89499406b87391d (patch)
treeeb2193c64f8fb2253eb117eaf1870b52dd34ff1a /src/account.cc
parent6ef755c1330c6e11476ea2e63b8388ad29efb4ef (diff)
downloadfork-ledger-536e3e73228b6168437704ede89499406b87391d.tar.gz
fork-ledger-536e3e73228b6168437704ede89499406b87391d.tar.bz2
fork-ledger-536e3e73228b6168437704ede89499406b87391d.zip
Added a new scope_value() inline helper function
Diffstat (limited to 'src/account.cc')
-rw-r--r--src/account.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/account.cc b/src/account.cc
index 33b1ebab..606562b8 100644
--- a/src/account.cc
+++ b/src/account.cc
@@ -203,11 +203,9 @@ namespace {
account_t * acct = account.parent;
for (; acct && acct->parent; acct = acct->parent) ;
if (scope[0].is_string())
- return value_t(static_cast<scope_t *>
- (acct->find_account(args.get<string>(0), false)));
+ return scope_value(acct->find_account(args.get<string>(0), false));
else if (scope[0].is_mask())
- return value_t(static_cast<scope_t *>
- (acct->find_account_re(args.get<mask_t>(0).str())));
+ return scope_value(acct->find_account_re(args.get<mask_t>(0).str()));
else
return NULL_VALUE;
} else {
@@ -285,7 +283,7 @@ namespace {
}
value_t get_parent(account_t& account) {
- return value_t(static_cast<scope_t *>(account.parent));
+ return scope_value(account.parent);
}
value_t fn_any(call_scope_t& scope)