Skip to content
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
@mgehre

Description

@mgehre

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

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions