Skip to content

Commit 6ba2f46

Browse files
committed
Using mpl::vector instead of an mpl::list.
1 parent 8fd3034 commit 6ba2f46

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libs/network/test/http/tag_types.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66
// (See accompanying file LICENSE_1_0.txt or copy at
77
// http://www.boost.org/LICENSE_1_0.txt)
88

9-
#include <boost/mpl/list.hpp>
9+
#include <boost/mpl/vector.hpp>
1010
#include <boost/network/protocol/http/tags.hpp>
1111

1212
namespace http = boost::network::http;
1313

14-
typedef boost::mpl::list<
14+
typedef boost::mpl::vector<
1515
http::tags::http_default_8bit_tcp_resolve
1616
, http::tags::http_default_8bit_udp_resolve
17+
, http::tags::http_keepalive_8bit_tcp_resolve
18+
, http::tags::http_keepalive_8bit_udp_resolve
1719
, http::tags::http_async_8bit_udp_resolve
1820
, http::tags::http_async_8bit_tcp_resolve
1921
> tag_types;

0 commit comments

Comments
 (0)