From 8bffdd64b574949fddf3534ae343e7e410dd2cbb Mon Sep 17 00:00:00 2001 From: zerotypos-found Date: Tue, 23 Jan 2018 11:39:56 +0900 Subject: [PATCH] Replace tabs with whitespace characters --- include/boost/mp11/bind.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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;