clang-format

This commit is contained in:
Hans Dembinski
2018-07-21 17:28:14 +02:00
parent 699bb519c5
commit bfc437b7bd
53 changed files with 1784 additions and 1507 deletions

View File

@@ -3,6 +3,7 @@
using namespace boost::histogram;
int main() {
auto h = make_dynamic_histogram(axis::integer<>(0, 2), axis::integer<>(0, 2));
auto h =
make_dynamic_histogram(axis::integer<>(0, 2), axis::integer<>(0, 2));
h.at(std::vector<int>({-2, 0}));
}