From 493832a5701a30e3a8080dc1eaecefd749cd4ed2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 27 Oct 2021 02:57:55 +0300 Subject: [PATCH] Remove string_view from documentation --- doc/changes.qbk | 3 --- doc/core.qbk | 1 - 2 files changed, 4 deletions(-) diff --git a/doc/changes.qbk b/doc/changes.qbk index 6f37292..5168026 100644 --- a/doc/changes.qbk +++ b/doc/changes.qbk @@ -11,9 +11,6 @@ * Added a generic implementation to `boost/core/cmath.hpp`, enabled when `BOOST_CORE_USE_GENERIC_CMATH` is defined or when the platform does not provide the necessary facilities in ``. * Added `boost::core::type_name`, a utility function that returns the name of a type as a string. -* Added `boost::core::string_view`, a portable implementation of C++17's `std::string_view` that differs - from `boost::string_view` by supporting implicit conversions from and to `std::string_view`, when that - is available. * Added `boost::span`, a C++11 implementation of C++20's `std::span`. [endsect] diff --git a/doc/core.qbk b/doc/core.qbk index 55101e3..7f7a75b 100644 --- a/doc/core.qbk +++ b/doc/core.qbk @@ -66,7 +66,6 @@ criteria for inclusion is that the utility component be: [include ref.qbk] [include scoped_enum.qbk] [include span.qbk] -[include string_view.qbk] [include swap.qbk] [include typeinfo.qbk] [include type_name.qbk]