This repository was archived by the owner on Jul 3, 2024. It is now read-only.
This repository was archived by the owner on Jul 3, 2024. It is now read-only.
Brace initialization does not trigger -Wdangling-gsl #95
Open
Description
In
#include <string_view>
#include <string>
std::string f();
// Type your code here, or load an example.
int square(int num) {
std::string_view a(f());
std::string_view b{f()};
std::string_view c;
c = f();
return num * num;
}
only a
is diagosed, even though b and c have the same issue.
(see https://godbolt.org/z/dz67ZD)
fyi @Xazax-hun