Skip to content

Commit

Permalink
Merge pull request #56 from Flow-IPC/boost-1.84
Browse files Browse the repository at this point in the history
Boost-1.84 upgrade -> explicit #include of <boost/array.hpp> due to it working without it by essentially accident.
  • Loading branch information
ygoldfeld committed Feb 14, 2024
2 parents e8e968c + 0b2699e commit fc68843
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/flow/net_flow/info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/// @file
#include "flow/net_flow/info.hpp"
#include "flow/net_flow/detail/low_lvl_packet.hpp"
#include <boost/array.hpp>

namespace flow::net_flow
{
Expand Down
1 change: 1 addition & 0 deletions test/basic/net_flow/echo/cli/echo_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "flow/net_flow/node.hpp"
#include "flow/log/simple_ostream_logger.hpp"
#include "flow/log/async_file_logger.hpp"
#include <boost/array.hpp>

/* This simple program is a Flow-based echo client.
* <executable> <times to send a message and expect reply> <host> <UDP port> <message contents>
Expand Down
1 change: 1 addition & 0 deletions test/basic/net_flow/echo/srv/echo_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include "flow/log/simple_ostream_logger.hpp"
#include "flow/log/async_file_logger.hpp"

#include <boost/array.hpp>
#include <fstream>

/* This simple program is a Flow-based echo server.
Expand Down

0 comments on commit fc68843

Please sign in to comment.