]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/histogram/test/boost_accumulators_support_test.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / histogram / test / boost_accumulators_support_test.cpp
index b394342bfd7590e9b3d1206c7722109635959374..f8f729240f148885ab38ab901104ea210111e82f 100644 (file)
@@ -9,9 +9,9 @@
 #include <boost/accumulators/statistics/stats.hpp>
 #include <boost/core/lightweight_test.hpp>
 #include <boost/histogram/axis/integer.hpp>
-#include "throw_exception.hpp"
 #include <boost/histogram/make_histogram.hpp>
 #include <boost/histogram/storage_adaptor.hpp>
+#include "throw_exception.hpp"
 
 namespace ba = boost::accumulators;
 
@@ -20,7 +20,7 @@ int main() {
 
   // mean
   {
-    using mean = ba::accumulator_set<double, ba::stats<ba::tag::mean>>;
+    using mean = ba::accumulator_set<double, ba::stats<ba::tag::mean> >;
 
     auto h = make_histogram_with(dense_storage<mean>(), axis::integer<>(0, 2));
     h(0, sample(1));