forked from premiere/premiere-libtorrent
fix test_buffer build when linking dynamically
This commit is contained in:
parent
0d3eb71ba1
commit
261648d60a
|
@ -33,6 +33,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef TORRENT_CHAINED_BUFFER_HPP_INCLUDED
|
#ifndef TORRENT_CHAINED_BUFFER_HPP_INCLUDED
|
||||||
#define TORRENT_CHAINED_BUFFER_HPP_INCLUDED
|
#define TORRENT_CHAINED_BUFFER_HPP_INCLUDED
|
||||||
|
|
||||||
|
#include "libtorrent/config.hpp"
|
||||||
|
|
||||||
#include <boost/function/function1.hpp>
|
#include <boost/function/function1.hpp>
|
||||||
#include <boost/version.hpp>
|
#include <boost/version.hpp>
|
||||||
#if BOOST_VERSION < 103500
|
#if BOOST_VERSION < 103500
|
||||||
|
@ -48,7 +50,7 @@ namespace libtorrent
|
||||||
#if BOOST_VERSION >= 103500
|
#if BOOST_VERSION >= 103500
|
||||||
namespace asio = boost::asio;
|
namespace asio = boost::asio;
|
||||||
#endif
|
#endif
|
||||||
struct chained_buffer
|
struct TORRENT_EXPORT chained_buffer
|
||||||
{
|
{
|
||||||
chained_buffer(): m_bytes(0), m_capacity(0)
|
chained_buffer(): m_bytes(0), m_capacity(0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue