summaryrefslogtreecommitdiff
path: root/src/account.h
diff options
context:
space:
mode:
authorTim Crews <tim@code-affinity.com>2013-06-14 21:29:47 -0700
committerTim Crews <tim@code-affinity.com>2013-06-14 21:29:47 -0700
commit0dbb38fe27e81790451a8233c5959e0fe26dc5ee (patch)
tree0af89e3e10e5c4fe7de0070e9e6ccc6cb8ee7d93 /src/account.h
parentfe810fa13f1e814e69dee2484c8b2878d5101d6c (diff)
downloadfork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.tar.gz
fork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.tar.bz2
fork-ledger-0dbb38fe27e81790451a8233c5959e0fe26dc5ee.zip
Source changes needed for Microsoft Visual C++ compatibility.
Includes an implementation of strptime, compiled only for Win32 platform.
Diffstat (limited to 'src/account.h')
-rw-r--r--src/account.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/account.h b/src/account.h
index 7b53de15..daeee038 100644
--- a/src/account.h
+++ b/src/account.h
@@ -128,11 +128,11 @@ public:
accounts_map_seconds_iterator accounts_begin() {
return make_transform_iterator
- (accounts.begin(), bind(&accounts_map::value_type::second, _1));
+ (accounts.begin(), boost::bind(&accounts_map::value_type::second, _1));
}
accounts_map_seconds_iterator accounts_end() {
return make_transform_iterator
- (accounts.end(), bind(&accounts_map::value_type::second, _1));
+ (accounts.end(), boost::bind(&accounts_map::value_type::second, _1));
}
void add_post(post_t * post);