Fixes a member variable that was not initialized before use

This commit is contained in:
Peter Thorson
2013-03-30 17:48:35 -05:00
parent 26d601e7c4
commit 837d9eef9f

View File

@@ -63,7 +63,7 @@ public:
typedef typename transport_con_type::ptr transport_con_ptr;
// generate and manage our own io_service
explicit endpoint()
explicit endpoint() : output_stream(NULL)
{
std::cout << "transport::iostream::endpoint constructor" << std::endl;
}