Update vec-initializer-lists changelog to cover constexpr change and variadic constructor
The changelog is updated to replace initializer list changes with variadic constructors.
Type | Constructed with | Compile time | Run Time |
---|---|---|---|
scalar(1~4) | () | Yes | |
scalar(1~4) | {} | Yes | |
scalar(>4) | () | Yes | |
scalar(>4) | {} | Yes | |
nested type(1~4) | () | Yes | |
nested type(1~4) | {} | Yes | |
nested type(>4) | () | ERROR | ERROR |
nested type(>4) | {} | Yes |
vtkm::make_Vec
assures compile-time.
Close #256 (closed).
Edited by Haocheng LIU