Imported Upstream version 1.64.0
[platform/upstream/boost.git] / libs / unordered / test / helpers / strong.hpp
index 02fe267..0fc3d58 100644 (file)
@@ -6,37 +6,38 @@
 #if !defined(BOOST_UNORDERED_TEST_HELPERS_STRONG_HEADER)
 #define BOOST_UNORDERED_TEST_HELPERS_STRONG_HEADER
 
-#include <boost/config.hpp>
-#include <iterator>
 #include "./equivalent.hpp"
-#include "./list.hpp"
 #include "./exception_test.hpp"
+#include "./list.hpp"
+#include <boost/config.hpp>
+#include <iterator>
 
-namespace test
+namespace test {
+template <class X> class strong
 {
-    template <class X>
-    class strong
+    typedef test::list<BOOST_DEDUCED_TYPENAME X::value_type> values_type;
+    values_type values_;
+    unsigned int allocations_;
+
+  public:
+    void store(X const& x, unsigned int allocations = 0)
     {
-        typedef test::list<BOOST_DEDUCED_TYPENAME X::value_type> values_type;
-        values_type values_;
-        unsigned int allocations_;
-    public:
-        void store(X const& x, unsigned int allocations = 0) {
-            DISABLE_EXCEPTIONS;
-            values_.clear();
-            values_.insert(x.cbegin(), x.cend());
-            allocations_ = allocations;
-        }
+        DISABLE_EXCEPTIONS;
+        values_.clear();
+        values_.insert(x.cbegin(), x.cend());
+        allocations_ = allocations;
+    }
 
-        void test(X const& x, unsigned int allocations = 0) const {
-            if(!(x.size() == values_.size() &&
-                    test::equal(x.cbegin(), x.cend(), values_.begin(),
-                        test::equivalent)))
-                BOOST_ERROR("Strong exception safety failure.");
-            if(allocations != allocations_)
-                BOOST_ERROR("Strong exception failure: extra allocations.");
-        }
-    };
+    void test(X const& x, unsigned int allocations = 0) const
+    {
+        if (!(x.size() == values_.size() &&
+                test::equal(
+                    x.cbegin(), x.cend(), values_.begin(), test::equivalent)))
+            BOOST_ERROR("Strong exception safety failure.");
+        if (allocations != allocations_)
+            BOOST_ERROR("Strong exception failure: extra allocations.");
+    }
+};
 }
 
 #endif