This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/78119] wrong diagnostic pointer for -Werror=ignored-qualifiers


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78119

Pawel Sikora <pawel_sikora at zoho dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |7.1.1
      Known to fail|                            |6.3.1

--- Comment #2 from Pawel Sikora <pawel_sikora at zoho dot com> ---
% cat t.cpp 
typedef void* Y;
struct X {
    const Y get() const;
};
% ~/toolchain/gcc/sysroot/x86_64-gnu-linux/bin/x86_64-gnu-linux-g++ t.cpp -Wall
-Wextra -c
t.cpp:3:19: warning: type qualifiers ignored on function return type
[-Wignored-qualifiers]
     const Y get() const;
                   ^~~~~

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]