Imported Upstream version 1.72.0
[platform/upstream/boost.git] / boost / multiprecision / traits / is_variable_precision.hpp
index c76f512..cc84a9f 100644 (file)
@@ -9,16 +9,18 @@
 #include <boost/type_traits/integral_constant.hpp>
 #include <boost/multiprecision/detail/number_base.hpp>
 
-namespace boost{ namespace multiprecision{  namespace detail{
+namespace boost { namespace multiprecision { namespace detail {
 
-   template <class Backend>
-   struct is_variable_precision : public false_type{};
+template <class Backend>
+struct is_variable_precision : public false_type
+{};
 
-   template <class Backend, expression_template_option ExpressionTemplates>
-   struct is_variable_precision<number<Backend, ExpressionTemplates> > : public is_variable_precision<Backend> {};
+template <class Backend, expression_template_option ExpressionTemplates>
+struct is_variable_precision<number<Backend, ExpressionTemplates> > : public is_variable_precision<Backend>
+{};
 
 }
 }
-}
+} // namespace boost::multiprecision::detail
 
 #endif // BOOST_MP_IS_BACKEND_HPP