]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/unordered/test/helpers/exception_test.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / libs / unordered / test / helpers / exception_test.hpp
index d527269123545c5a1774cb73a70af5355527364e..8984eee9be04d0c7dc724672d84a5d0c2b26bbac 100644 (file)
@@ -176,21 +176,18 @@ namespace test {
       DISABLE_EXCEPTIONS;
       test::check_instances check;
       test::scope = "";
-      BOOST_DEDUCED_TYPENAME Test::data_type x(test_.init());
-      BOOST_DEDUCED_TYPENAME Test::strong_type strong;
+      typename Test::data_type x(test_.init());
+      typename Test::strong_type strong;
       strong.store(x);
       try {
         ENABLE_EXCEPTIONS;
-        call_ignore_extra_parameters<Test,
-          BOOST_DEDUCED_TYPENAME Test::data_type,
-          BOOST_DEDUCED_TYPENAME Test::strong_type>(
-          &Test::run, test_, x, strong);
+        call_ignore_extra_parameters<Test, typename Test::data_type,
+          typename Test::strong_type>(&Test::run, test_, x, strong);
       } catch (...) {
         try {
           DISABLE_EXCEPTIONS;
-          call_ignore_extra_parameters<Test,
-            BOOST_DEDUCED_TYPENAME Test::data_type const,
-            BOOST_DEDUCED_TYPENAME Test::strong_type const>(
+          call_ignore_extra_parameters<Test, typename Test::data_type const,
+            typename Test::strong_type const>(
             &Test::check, test_, constant(x), constant(strong));
         } catch (...) {
           exception_in_check_ = true;