Make clang (OSX) happy again

pull/454/head
Nils Maier 2015-06-24 14:24:10 +02:00
parent 3f2b5dce2f
commit a3ba5c0588
15 changed files with 21 additions and 1 deletions

View File

@ -33,6 +33,9 @@
*/
/* copyright --> */
#include "DHTInteractionCommand.h"
#include <array>
#include "DownloadEngine.h"
#include "RecoverableException.h"
#include "DHTMessageDispatcher.h"

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "FtpConnection.h"
#include <array>
#include <cstring>
#include <cstdio>
#include <cassert>

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "GZipEncoder.h"
#include <array>
#include <cstring>
#include "fmt.h"

View File

@ -35,6 +35,7 @@
#ifndef D_GENERIC_PARSER_H
#define D_GENERIC_PARSER_H
#include <array>
#include "common.h"
#include "a2io.h"
#include "util.h"

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "IOFile.h"
#include <array>
#include <cstring>
#include <cstdarg>
#include <ostream>

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "IteratableChecksumValidator.h"
#include <array>
#include <cstdlib>
#include "util.h"

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "IteratableChunkChecksumValidator.h"
#include <array>
#include <cstring>
#include <cstdlib>

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "MSEHandshake.h"
#include <array>
#include <cstring>
#include <cassert>

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "Piece.h"
#include <array>
#include <cassert>
#include "util.h"

View File

@ -93,7 +93,7 @@ public:
const Clock::time_point& getTime() const { return tp_; }
constexpr static Timer zero() { return Timer(0_s); }
static Timer zero() { return Timer(0_s); }
private:
Clock::time_point tp_;

View File

@ -33,6 +33,9 @@
*/
/* copyright --> */
#include "XmlParser.h"
#include <array>
#include "a2io.h"
#include "util.h"

View File

@ -34,6 +34,7 @@
/* copyright --> */
#include "message_digest_helper.h"
#include <array>
#include <cstring>
#include <cstdlib>

View File

@ -33,6 +33,9 @@
*/
/* copyright --> */
#include "metalink_helper.h"
#include <array>
#include "Option.h"
#include "MetalinkEntry.h"
#include "MetalinkParserStateMachine.h"

View File

@ -53,6 +53,7 @@
# include <pwd.h>
#endif // HAVE_PWD_H
#include <array>
#include <cerrno>
#include <cassert>
#include <cstring>

View File

@ -3,6 +3,7 @@
#include <fstream>
#include <cppunit/extensions/HelperMacros.h>
#include "a2functional.h"
#include "File.h"
#include "DefaultDiskWriter.h"