Skip to content

Commit df5bd78

Browse files
committed
Fixed compiler error on GCC 4.7.2
1 parent 2284d28 commit df5bd78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/freelan/include/freelan/ip_route.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ namespace freelan
9393
/**
9494
* \brief The IP route type.
9595
*/
96-
typedef boost::variant<asiotap::ip_route, default_ipv4_gateway_type, default_ipv6_gateway_type> ip_route;
96+
typedef boost::variant<default_ipv4_gateway_type, default_ipv6_gateway_type, asiotap::ip_route> ip_route;
9797

9898
/**
9999
* \brief A visitor that get the route.
@@ -173,4 +173,4 @@ namespace freelan
173173
{
174174
return !(lhs == rhs);
175175
}
176-
}
176+
}

0 commit comments

Comments
 (0)