Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Brace initialization does not trigger -Wdangling-gsl #95

Open
mgehre opened this issue Apr 28, 2020 · 1 comment
Open

Brace initialization does not trigger -Wdangling-gsl #95

mgehre opened this issue Apr 28, 2020 · 1 comment

Comments

@mgehre
Copy link
Owner

mgehre commented Apr 28, 2020

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

@Xazax-hun
Copy link
Collaborator

Xazax-hun commented Apr 30, 2020

Thanks! I will try to look into it and fix it upstream.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants