Merge pull request #455 from aldenml/hex-include

Fix compilation with BOOST_NO_IOSTREAM
This commit is contained in:
Arvid Norberg 2016-02-03 17:34:20 -05:00
commit b7a6d8114e
1 changed files with 1 additions and 1 deletions

View File

@ -42,8 +42,8 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/assert.hpp"
#include "libtorrent/aux_/byteswap.hpp"
#if TORRENT_USE_IOSTREAM
#include "libtorrent/hex.hpp" // to_hex, from_hex
#if TORRENT_USE_IOSTREAM
#include <iostream>
#include <iomanip>
#endif