]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/system/test/header_only_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / system / test / header_only_test.cpp
index 69dccae887650f8ed7dcbb7d1508f976705d50f1..5bbbeb8bf47e42736feb19a3528a790a403486b6 100644 (file)
 #include <boost/detail/lightweight_test.hpp>
 #include <boost/system/error_code.hpp>
 
-int main( int, char*[] )
+int main()
 {
-  boost::system::error_code ec( 0, boost::system::system_category() );
-  return ::boost::report_errors();
+    boost::system::error_code ec( 0, boost::system::system_category() );
+    (void)ec;
+
+    return ::boost::report_errors();
 }