$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Bjorn Reese (breese_at_[hidden])
Date: 2019-09-12 14:29:19
On 9/12/19 3:19 PM, Mike via Boost wrote:
> b) to conditionally enable support for std::string_view in c++17
> (implicit conversion to and explicit construction from string_view)
For the string_view to bikeshedding_string conversion I would prefer a
temmplated constructor that takes a container (a Range concept to be
precise.) That way it works with any type that has begin() and end(),
and we do not create a dependency on std::string_view. The container
could be further constrained to those with value_type == char.