Skip to content

Commit 843a3a4

Browse files
author
liancheng
committed
Fixed the following problem:
* template keyword missing in struct get_real_algorithm definition in boost/network/message/transformers.hpp, and gcc 4.1.2 complains.
1 parent 9dc07de commit 843a3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boost/network/message/transformers.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace boost { namespace network {
1818
namespace impl {
1919
template <class Algorithm, class Selector>
2020
struct get_real_algorithm {
21-
typedef typename Algorithm::type<Selector> type;
21+
typedef typename Algorithm::template type<Selector> type;
2222
};
2323

2424
template <class Algorithm, class Selector>

0 commit comments

Comments
 (0)