Fix compile error with clang

pull/103/head
Tatsuhiro Tsujikawa 2013-06-25 02:57:48 +09:00
parent 2761301dfb
commit 6bcf33a69e
3 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@
namespace aria2 {
class BackupConnectInfo;
struct BackupConnectInfo;
class ConnectCommand : public AbstractCommand {
public:

View File

@ -64,8 +64,8 @@ struct IndexedListIterator {
typedef ValueType value_type;
typedef PointerType pointer;
typedef ReferenceType reference;
typedef typename SeqIteratorType::size_type size_type;
typedef typename SeqIteratorType::difference_type difference_type;
typedef typename SeqType::size_type size_type;
typedef typename SeqType::difference_type difference_type;
typedef IndexedListIterator SelfType;
IndexedListIterator() {}

View File

@ -39,7 +39,7 @@
namespace aria2 {
class BackupConnectInfo;
struct BackupConnectInfo;
class ConnectCommand;
class InitiateConnectionCommand : public AbstractCommand {