diff --git a/include/boost/detail/named_template_params.hpp b/include/boost/detail/named_template_params.hpp index eda8524..199dcbb 100644 --- a/include/boost/detail/named_template_params.hpp +++ b/include/boost/detail/named_template_params.hpp @@ -20,7 +20,7 @@ namespace boost { struct dummy_default_gen { template struct bind { - typedef default_argument type; + typedef default_argument type; }; }; @@ -41,14 +41,14 @@ namespace boost { struct choose_default { template struct bind { - typedef typename default_generator::type Gen; - typedef typename Gen::template bind::type type; + typedef typename default_generator::type Gen; + typedef typename Gen::template bind::type type; }; }; struct choose_arg { template struct bind { - typedef Arg type; + typedef Arg type; }; }; @@ -80,7 +80,7 @@ namespace boost { #endif public: typedef typename Selector - ::template bind::type type; + ::template bind::type type; }; // To differentiate an unnamed parameter from a traits generator @@ -97,7 +97,7 @@ namespace boost { }; struct choose_default_arg { template struct bind { - typedef detail::default_argument type; + typedef detail::default_argument type; }; };