]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/core/test/eif_namespace_disambiguation.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / core / test / eif_namespace_disambiguation.cpp
index d5589aeab1f591dc5b7a2ecd87c63f35f08840a0..fd24a4bb1db701121edf48311496f7b3e084d8fe 100644 (file)
@@ -26,13 +26,13 @@ template<class T> struct not_
 namespace A {
   template<class T>
   typename enable_if<is_arithmetic<T>, bool>::type
-  arithmetic_object(T t) { return true; }
+  arithmetic_object(T /*t*/) { return true; }
 }
 
 namespace B {
   template<class T>
   typename enable_if<not_<is_arithmetic<T> >, bool>::type
-  arithmetic_object(T t) { return false; }
+  arithmetic_object(T /*t*/) { return false; }
 }
 
 int main()
@@ -47,4 +47,3 @@ int main()
 
   return boost::report_errors();
 }
-