]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/multiprecision/test/no_eh_test_support.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / multiprecision / test / no_eh_test_support.cpp
index 14a234a5ef75d1b34f71a20e212013353be16a52..23595073773b7f56baedf852b380ad48b21ddb42 100644 (file)
@@ -3,27 +3,27 @@
 //  Software License, Version 1.0. (See accompanying file
 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 
-
 #include <boost/throw_exception.hpp>
 #include <boost/config.hpp>
 
 #ifdef BOOST_NO_EXCEPTIONS
 
 #include <iostream>
-#include<iomanip>
+#include <iomanip>
 
 namespace boost {
 
-   void throw_exception(std::exception const & e)
-   {
-      std::cerr << "Terminating with exception: " << e.what() << std::endl;
-   }
-
+void throw_exception(std::exception const& e)
+{
+   std::cerr << "Terminating with exception: " << e.what() << std::endl;
 }
 
+} // namespace boost
+
 #else
 
-namespace boost { namespace detail { void dummy_proc() {} } }
+namespace boost { namespace detail {
+void dummy_proc() {}
+}} // namespace boost::detail
 
 #endif
-