]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/filesystem/bug/bug.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / filesystem / bug / bug.cpp
index 6a1aea91e1239f06ec0dbbf965b5dde6f60aeb8b..b36173118da3242709f555633669a8f599ffcf76 100644 (file)
@@ -5,13 +5,13 @@
 
 namespace fs = boost::filesystem;
 
-int test_main(int, char*[])     // note name
+int test_main(int, char*[]) // note name
 {
-  BOOST_TEST(2 + 2 == 5);       // one convertible-to-bool argument
-  BOOST_TEST_EQ(4 + 4, 9);      // two EqualityComparible arguments
-  BOOST_TEST(fs::exists("."));  // should pass, so nothing reported
+    BOOST_TEST(2 + 2 == 5);      // one convertible-to-bool argument
+    BOOST_TEST_EQ(4 + 4, 9);     // two EqualityComparible arguments
+    BOOST_TEST(fs::exists(".")); // should pass, so nothing reported
 
-  return ::boost::report_errors();   // required
+    return ::boost::report_errors(); // required
 }
 
 //  Copyright Beman Dawes 2014