]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/histogram/benchmark/histogram_iteration.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / histogram / benchmark / histogram_iteration.cpp
index bb18a0ba6cbcbe62c5a58b9a4eb2fb5ef4624368..765401eaa9a223154e888cda711044a7869517a9 100644 (file)
 #include <vector>
 #include "../test/throw_exception.hpp"
 
-#include <boost/assert.hpp>
+#include <cassert>
 struct assert_check {
   assert_check() {
-    BOOST_ASSERT(false); // don't run with asserts enabled
+    assert(false); // don't run with asserts enabled
   }
 } _;