diff options
author | Tim Crews <tim@code-affinity.com> | 2013-06-14 21:29:47 -0700 |
---|---|---|
committer | Tim Crews <tim@code-affinity.com> | 2013-06-14 21:29:47 -0700 |
commit | 0dbb38fe27e81790451a8233c5959e0fe26dc5ee (patch) | |
tree | 0af89e3e10e5c4fe7de0070e9e6ccc6cb8ee7d93 /src/account.h | |
parent | fe810fa13f1e814e69dee2484c8b2878d5101d6c (diff) | |
download | fork-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.h | 4 |
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); |