mirror of
https://github.com/boostorg/compute.git
synced 2026-01-31 20:12:23 +00:00
This fixes a few issues encountered when using iterators with a void value_type (e.g. std::insert_iterator<>). The is_contiguous_iterator meta-function was refactored to always return false for iterators with a void value_type and avoid instantiating types for containers with a void value_type (e.g. std::vector<void>::iterator) which previously resulted in compilation errors.