Skip to content
Snippets Groups Projects
Commit cf58d8af authored by g0dil's avatar g0dil
Browse files

Adjustment and fixes for boost-1.36 support

parent b5859862
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,10 @@
#define prefix_
///////////////////////////////cc.p////////////////////////////////////////
BOOST_AUTO_UNIT_TEST(main)
{
BOOST_CHECK( true );
}
///////////////////////////////cc.e////////////////////////////////////////
#undef prefix_
......
......@@ -33,6 +33,10 @@
#define prefix_
///////////////////////////////cc.p////////////////////////////////////////
BOOST_AUTO_UNIT_TEST(main)
{
BOOST_CHECK( true );
}
///////////////////////////////cc.e////////////////////////////////////////
#undef prefix_
......
......@@ -350,7 +350,8 @@ prefix_ void senf::term::BaseTelnetProtocol::writeHandler(int state)
return;
}
sendQueue_.erase(sendQueue_.begin(),
handle_.write(std::make_pair(sendQueue_.begin(), sendQueue_.end())));
handle_.write(boost::make_iterator_range(
sendQueue_.begin(), sendQueue_.end())));
if (sendQueue_.empty())
outputEvent_.disable();
}
......
......@@ -36,7 +36,9 @@
///////////////////////////////cc.p////////////////////////////////////////
BOOST_AUTO_UNIT_TEST(telnet)
{}
{
BOOST_CHECK( true );
}
///////////////////////////////cc.e////////////////////////////////////////
#undef prefix_
......
......@@ -33,6 +33,10 @@
#define prefix_
///////////////////////////////cc.p////////////////////////////////////////
BOOST_AUTO_UNIT_TEST(main)
{
BOOST_CHECK( true );
}
///////////////////////////////cc.e////////////////////////////////////////
#undef prefix_
......
......@@ -33,6 +33,10 @@
#define prefix_
///////////////////////////////cc.p////////////////////////////////////////
BOOST_AUTO_UNIT_TEST(main)
{
BOOST_CHECK( true );
}
///////////////////////////////cc.e////////////////////////////////////////
#undef prefix_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment