add missing includes for debug logging builds

This commit is contained in:
Arvid Norberg 2014-03-28 01:55:09 +00:00
parent f136e673d6
commit 1734beda07
1 changed files with 4 additions and 0 deletions

View File

@ -36,7 +36,11 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/limits.hpp>
#include <boost/bind.hpp>
#include <boost/cstdint.hpp>
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_ERROR_LOGGING
#include <stdarg.h> // for va_start, va_end
#include <stdio.h> // for vsnprintf
#endif
#include "libtorrent/peer_connection.hpp"
#include "libtorrent/identify_client.hpp"