WIP, added tests of failing behavior

This commit is contained in:
Hans Dembinski
2018-09-26 11:42:47 +02:00
parent 0ca1063716
commit 6f94a05fd2
4 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
// Copyright 2018 Hans Dembinski
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/histogram.hpp>
#include <vector>
using namespace boost::histogram;
int main() {
auto a = make_dynamic_histogram(axis::integer<>(0, 2));
a(std::vector<int>(1));
}