C++11 compatibility fixes.

This commit is contained in:
rakshasa
2014-05-13 23:36:37 +09:00
parent e42ec54920
commit 3b39f37f49
77 changed files with 886 additions and 803 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ CommandScheduler::insert(const std::string& key) {
delete *itr;
*itr = new CommandSchedulerItem(key);
(*itr)->slot() = std::tr1::bind(&CommandScheduler::call_item, this, *itr);
(*itr)->slot() = std::bind(&CommandScheduler::call_item, this, *itr);
return itr;
}