From 0dbb38fe27e81790451a8233c5959e0fe26dc5ee Mon Sep 17 00:00:00 2001 From: Tim Crews Date: Fri, 14 Jun 2013 21:29:47 -0700 Subject: Source changes needed for Microsoft Visual C++ compatibility. Includes an implementation of strptime, compiled only for Win32 platform. --- src/account.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/account.h') 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); -- cgit v1.2.3