Add a module for experimental/string_view

Recent gcc updates somehow make experimental/string_view available through
module string_view. Then it wrongly decides it needs to include
"bits/ranges_base.h" which is a c++14 header and breaks the compilation in case
of c++11.

This patch adds a proper experimental/string_view to disallow such shadowing.
This commit is contained in:
Vassil Vassilev 2023-02-09 17:47:16 +00:00 committed by jenkins
parent b3b15d60e1
commit b474a0ab43

View File

@ -391,10 +391,10 @@ module "std" [system] {
export *
header "cuchar"
}
//module "experimental/algorithm" {
// export *
// header "experimental/algorithm"
//}
module "experimental/string_view" {
export *
header "experimental/string_view"
}
module "ext/functional" {
export *
header "ext/functional"