]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/qvm/test/mul_eq_mm_test.cpp
update sources to v12.2.4
[ceph.git] / ceph / src / boost / libs / qvm / test / mul_eq_mm_test.cpp
index 5c78e29f870ad9562a8b53fdb73d6432f6749ee8..87b8a644cbef56304e5e32b1136f268b5e4b98c0 100644 (file)
@@ -1,42 +1,42 @@
-//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
-
-//Distributed under the Boost 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/qvm/mat_operations.hpp>
-#include "test_qvm_matrix.hpp"
-#include "gold.hpp"
-
-namespace
-    {
-    template <int Dim>
-    void
-    test()
-        {
-        using namespace boost::qvm::sfinae;
-            {
-            test_qvm::matrix<M1,Dim,Dim> x(42,1);
-            test_qvm::matrix<M1,Dim,Dim> const y(42,2);
-            test_qvm::multiply_m(x.b,x.a,y.a);
-            x *= y;
-            BOOST_QVM_TEST_EQ(x.a,x.b);
-            }
-            {
-            test_qvm::matrix<M1,Dim,Dim> x(42,1);
-            test_qvm::matrix<M2,Dim,Dim> const y(42,2);
-            test_qvm::multiply_m(x.b,x.a,y.a);
-            x *= y;
-            BOOST_QVM_TEST_EQ(x.a,x.b);
-            }
-        }
-    }
-
-int
-main()
-    {
-    test<2>();
-    test<3>();
-    test<4>();
-    test<5>();
-    return boost::report_errors();
-    }
+//Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.\r
+\r
+//Distributed under the Boost Software License, Version 1.0. (See accompanying\r
+//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)\r
+\r
+#include <boost/qvm/mat_operations.hpp>\r
+#include "test_qvm_matrix.hpp"\r
+#include "gold.hpp"\r
+\r
+namespace\r
+    {\r
+    template <int Dim>\r
+    void\r
+    test()\r
+        {\r
+        using namespace boost::qvm::sfinae;\r
+            {\r
+            test_qvm::matrix<M1,Dim,Dim> x(42,1);\r
+            test_qvm::matrix<M1,Dim,Dim> const y(42,2);\r
+            test_qvm::multiply_m(x.b,x.a,y.a);\r
+            x *= y;\r
+            BOOST_QVM_TEST_EQ(x.a,x.b);\r
+            }\r
+            {\r
+            test_qvm::matrix<M1,Dim,Dim> x(42,1);\r
+            test_qvm::matrix<M2,Dim,Dim> const y(42,2);\r
+            test_qvm::multiply_m(x.b,x.a,y.a);\r
+            x *= y;\r
+            BOOST_QVM_TEST_EQ(x.a,x.b);\r
+            }\r
+        }\r
+    }\r
+\r
+int\r
+main()\r
+    {\r
+    test<2>();\r
+    test<3>();\r
+    test<4>();\r
+    test<5>();\r
+    return boost::report_errors();\r
+    }\r