mirror of
https://github.com/boostorg/container.git
synced 2026-02-25 04:12:27 +00:00
Avoid using inheriting constructors and initializer_list::cbegin/cend to be nicer with older compilers
This commit is contained in:
@@ -73,7 +73,7 @@ void print_range(std::ostream& out, Iterator b, Iterator e)
|
||||
template <typename Range>
|
||||
void print_range(std::ostream& out, const Range& range)
|
||||
{
|
||||
print_range(out, range.cbegin(), range.cend());
|
||||
print_range(out, range.begin(), range.end());
|
||||
}
|
||||
|
||||
template <typename Array, std::size_t N>
|
||||
|
||||
Reference in New Issue
Block a user