Skip to content

Commit 5f6e9ee

Browse files
committed
Changes to make things build
1 parent 44bd36b commit 5f6e9ee

26 files changed

+414
-460
lines changed

boost/network.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
// (See accompanying file LICENSE_1_0.txt or copy at
55
// http://www.boost.org/LICENSE_1_0.txt)
66

7-
#ifndef __NETWORK_HPP__
8-
#define __NETWORK_HPP__
7+
#ifndef BOOST_NETWORK_HPP__
8+
#define BOOST_NETWORK_HPP__
99

1010
// Include all headers in network/
1111
// Author: Dean Michael Berris
@@ -14,4 +14,4 @@
1414
#include <boost/network/message.hpp> // message type implementation
1515
#include <boost/network/protocol.hpp> // protocols implementation
1616

17-
#endif // __NETWORK_HPP__
17+
#endif // BOOST_NETWORK_HPP__

boost/network/detail/debug.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include <iostream>
1616
#ifndef BOOST_NETWORK_MESSAGE
1717
#define BOOST_NETWORK_MESSAGE(msg) \
18-
std::cerr << "[DEBUG " << __FILE__ << ':' << __LINE__ << "]: " << (msg) \
18+
std::cerr << "[DEBUG " << __FILE__ << ':' << __LINE__ << "]: " << msg \
1919
<< std::endl;
2020
#endif
2121
#else

0 commit comments

Comments
 (0)