summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-01-15 14:43:09 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-01-15 14:43:09 (GMT)
commita85b96ec1f65e7cf5bd28dd9ab43d656f20e0696 (patch)
tree1a4465aa97ff619d4ec5ccc5f58e31d1066bef67 /3rdParty
parentf1d3bac7356f6ef31d9b72399852671f614a953e (diff)
downloadswift-a85b96ec1f65e7cf5bd28dd9ab43d656f20e0696.zip
swift-a85b96ec1f65e7cf5bd28dd9ab43d656f20e0696.tar.bz2
Removed accidentally committed debug info.
Diffstat (limited to '3rdParty')
-rw-r--r--3rdParty/Boost/src/boost/asio/detail/impl/pipe_select_interrupter.ipp12
1 files changed, 2 insertions, 10 deletions
diff --git a/3rdParty/Boost/src/boost/asio/detail/impl/pipe_select_interrupter.ipp b/3rdParty/Boost/src/boost/asio/detail/impl/pipe_select_interrupter.ipp
index 5ed0d9d..f2a7291 100644
--- a/3rdParty/Boost/src/boost/asio/detail/impl/pipe_select_interrupter.ipp
+++ b/3rdParty/Boost/src/boost/asio/detail/impl/pipe_select_interrupter.ipp
@@ -29,7 +29,6 @@
#include <boost/asio/detail/pipe_select_interrupter.hpp>
#include <boost/asio/detail/throw_error.hpp>
#include <boost/asio/error.hpp>
-#include <iostream>
#include <boost/asio/detail/push_options.hpp>
@@ -57,17 +56,10 @@ pipe_select_interrupter::pipe_select_interrupter()
pipe_select_interrupter::~pipe_select_interrupter()
{
- std::cout << "Destroying pipe select interrupter" << std::endl;
- if (read_descriptor_ != -1) {
- std::cout << "Close read" << std::endl;
+ if (read_descriptor_ != -1)
::close(read_descriptor_);
- std::cout << "Done close read" << std::endl;
- }
- if (write_descriptor_ != -1) {
- std::cout << "Close write" << std::endl;
+ if (write_descriptor_ != -1)
::close(write_descriptor_);
- std::cout << "Done close write" << std::endl;
- }
}
void pipe_select_interrupter::interrupt()