]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/histogram/benchmark/histogram_filling.cpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / histogram / benchmark / histogram_filling.cpp
index 0bc5164b86726212179c4937b5bf3f16433241a3..dbe8bf1beff0ee3cfcf071876aa9242ea9e429e7 100644 (file)
 #include "../test/utility_histogram.hpp"
 #include "generator.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
   }
 } _;