This commit is contained in:
Hans Dembinski
2018-10-08 07:39:13 +02:00
parent 6f94a05fd2
commit f0d7ebf6bc
5 changed files with 21 additions and 2 deletions

View File

@@ -10,5 +10,5 @@
using namespace boost::histogram;
int main() {
auto a = make_dynamic_histogram(axis::integer<>(0, 2));
a(std::vector<int>(1));
a(std::vector<int>(1)); // fails, because tuple is intentionally not unpacked
}