diff --git a/include/boost/mp11/bind.hpp b/include/boost/mp11/bind.hpp index 38e1b8c..6fbc3e6 100644 --- a/include/boost/mp11/bind.hpp +++ b/include/boost/mp11/bind.hpp @@ -70,14 +70,14 @@ template class F, class... T> struct mp_bind_front private: #endif - template struct _fn { using type = F; }; + template struct _fn { using type = F; }; public: - // the indirection through _fn works around the language inability - // to expand U... into a fixed parameter list of an alias template + // the indirection through _fn works around the language inability + // to expand U... into a fixed parameter list of an alias template - template using fn = typename _fn::type; + template using fn = typename _fn::type; }; template using mp_bind_front_q = mp_bind_front; @@ -90,11 +90,11 @@ template class F, class... T> struct mp_bind_back private: #endif - template struct _fn { using type = F; }; + template struct _fn { using type = F; }; public: - template using fn = typename _fn::type; + template using fn = typename _fn::type; }; template using mp_bind_back_q = mp_bind_back;