Fix C++11 syntax error

This commit is contained in:
jzmaddock
2014-09-22 18:09:12 +01:00
parent 7e8ed98615
commit 6b92cc7e26

View File

@ -30,7 +30,7 @@ template<typename T>
struct test_bug_4530
{
template<typename A>
test_bug_4530(A&&, typename boost::enable_if<::tt::is_convertible<A&&, T> >::type* =0);
test_bug_4530(A&&, typename boost::enable_if< ::tt::is_convertible<A&&, T> >::type* =0);
};
struct A4530