axis_variable_fail0.cpp 385 B

1234567891011121314
  1. // Copyright 2019 Hans Dembinski
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt
  5. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. #include <boost/histogram/axis/variable.hpp>
  7. using namespace boost::histogram;
  8. int main() {
  9. // variable axis requires a floating point value type
  10. (void)axis::variable<int>({1, 2, 3});
  11. }