]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/histogram/test/histogram_serialization_test.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / histogram / test / histogram_serialization_test.cpp
index 29f6e5ae2d65d28dd15058fbd85c96ea643eedba..7f1c2afe57b5af4e19f7fdae4e0bf26ee5918361 100644 (file)
@@ -4,7 +4,7 @@
 // (See accompanying file LICENSE_1_0.txt
 // or copy at http://www.boost.org/LICENSE_1_0.txt)
 
-#include <boost/assert.hpp>
+#include <cassert>
 #include <boost/core/lightweight_test.hpp>
 #include <boost/histogram/axis.hpp>
 #include <boost/histogram/axis/ostream.hpp>
@@ -43,7 +43,7 @@ void run_tests(const std::string& filename) {
 }
 
 int main(int argc, char** argv) {
-  BOOST_ASSERT(argc == 2);
+  assert(argc == 2);
   run_tests<static_tag>(join(argv[1], "histogram_serialization_test_static.xml"));
   run_tests<dynamic_tag>(join(argv[1], "histogram_serialization_test_dynamic.xml"));
   return boost::report_errors();