Require -std=c++11 and use std::shared_ptr instead of SharedHandle

This commit is contained in:
Tatsuhiro Tsujikawa 2013-06-22 01:10:38 +09:00
parent 126a4bde61
commit 07d270c87e
709 changed files with 6305 additions and 6878 deletions

View file

@ -36,12 +36,14 @@
#define D_CONSOLE_H
#include "common.h"
#include "SharedHandle.h"
#include <memory>
#include "OutputFile.h"
namespace aria2 {
typedef SharedHandle<OutputFile> Console;
typedef std::shared_ptr<OutputFile> Console;
namespace global {