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
+3 -3
View File
@@ -38,15 +38,15 @@
#define RTORRENT_INPUT_BINDINGS_H
#include <map>
#include <tr1/functional>
#include lt_tr1_functional
#include "display/attributes.h"
namespace input {
class Bindings : private std::map<int, std::tr1::function<void ()> > {
class Bindings : private std::map<int, std::function<void ()> > {
public:
typedef std::tr1::function<void ()> slot_void;
typedef std::function<void ()> slot_void;
typedef std::map<int, slot_void> base_type;
using base_type::iterator;