Skip to content

Commit cac67d3

Browse files
authored
[Clang] emit -Wignored-qualifiers diagnostic for cv-qualified base classes (#121419)
Fixes #55474
1 parent b393a87 commit cac67d3

File tree

5 files changed

+52
-1
lines changed

5 files changed

+52
-1
lines changed

clang/docs/ReleaseNotes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,8 @@ Improvements to Clang's diagnostics
800800

801801
- Fix false positives warning for non-std functions with name `infinity` (#123231).
802802

803+
- Clang now emits a ``-Wignored-qualifiers`` diagnostic when a base class includes cv-qualifiers (#GH55474).
804+
803805
Improvements to Clang's time-trace
804806
----------------------------------
805807

clang/include/clang/Basic/DiagnosticSemaKinds.td

+4
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,10 @@ def err_noreturn_non_function : Error<
487487
def warn_qual_return_type : Warning<
488488
"'%0' type qualifier%s1 on return type %plural{1:has|:have}1 no effect">,
489489
InGroup<IgnoredQualifiers>, DefaultIgnore;
490+
def warn_qual_base_type : Warning<
491+
"'%0' qualifier%s1 on base class type %2 have no effect">,
492+
InGroup<IgnoredQualifiers>, DefaultIgnore;
493+
490494
def warn_deprecated_redundant_constexpr_static_def : Warning<
491495
"out-of-line definition of constexpr static data member is redundant "
492496
"in C++17 and is deprecated">,

clang/lib/Sema/SemaDeclCXX.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -2655,6 +2655,15 @@ CXXBaseSpecifier *Sema::CheckBaseSpecifier(CXXRecordDecl *Class,
26552655
return nullptr;
26562656
}
26572657

2658+
if (BaseType.hasQualifiers()) {
2659+
std::string Quals =
2660+
BaseType.getQualifiers().getAsString(Context.getPrintingPolicy());
2661+
Diag(BaseLoc, diag::warn_qual_base_type)
2662+
<< Quals << std::count(Quals.begin(), Quals.end(), ' ') + 1
2663+
<< BaseType;
2664+
Diag(BaseLoc, diag::note_base_class_specified_here) << BaseType;
2665+
}
2666+
26582667
// For the MS ABI, propagate DLL attributes to base class templates.
26592668
if (Context.getTargetInfo().getCXXABI().isMicrosoft() ||
26602669
Context.getTargetInfo().getTriple().isPS()) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// RUN: %clang_cc1 %s -std=c++11 -Wignored-qualifiers -verify
2+
3+
template <typename T> struct add_const {
4+
using type = const T;
5+
};
6+
template <typename T> using add_const_t = typename add_const<T>::type;
7+
8+
class A { };
9+
10+
typedef const A A_Const;
11+
class B : public A_Const { }; // expected-warning {{'const' qualifier on base class type 'A_Const' (aka 'const A') have no effect}} \
12+
// expected-note {{base class 'A_Const' (aka 'const A') specified here}}
13+
14+
typedef const volatile A A_Const_Volatile;
15+
class C : public A_Const_Volatile { }; // expected-warning {{'const volatile' qualifiers on base class type 'A_Const_Volatile' (aka 'const volatile A') have no effect}} \
16+
// expected-note {{base class 'A_Const_Volatile' (aka 'const volatile A') specified here}}
17+
18+
struct D {
19+
D(int);
20+
};
21+
22+
template <typename T> struct E : T { // expected-warning {{'const' qualifier on base class type 'const D' have no effect}} \
23+
// expected-note {{base class 'const D' specified here}}
24+
using T::T;
25+
E(int &) : E(0) {}
26+
};
27+
E<const D> e(1); // expected-note {{in instantiation of template class 'E<const D>' requested here}}
28+
29+
template <typename T>
30+
struct G : add_const<T>::type { // expected-warning {{'const' qualifier on base class type 'add_const<D>::type' (aka 'const D') have no effect}} \
31+
// expected-note {{base class 'add_const<D>::type' (aka 'const D') specified here}}
32+
using T::T;
33+
G(int &) : G(0) {}
34+
};
35+
G<D> g(1); // expected-note {{in instantiation of template class 'G<D>' requested here}}

libcxx/include/tuple

+2-1
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,7 @@ template <class... Types>
257257
# include <__type_traits/maybe_const.h>
258258
# include <__type_traits/nat.h>
259259
# include <__type_traits/negation.h>
260+
# include <__type_traits/remove_cv.h>
260261
# include <__type_traits/remove_cvref.h>
261262
# include <__type_traits/remove_reference.h>
262263
# include <__type_traits/unwrap_ref.h>
@@ -390,7 +391,7 @@ public:
390391
};
391392

392393
template <size_t _Ip, class _Hp>
393-
class __tuple_leaf<_Ip, _Hp, true> : private _Hp {
394+
class __tuple_leaf<_Ip, _Hp, true> : private __remove_cv_t<_Hp> {
394395
public:
395396
_LIBCPP_CONSTEXPR_SINCE_CXX14 __tuple_leaf& operator=(const __tuple_leaf&) = delete;
396397

0 commit comments

Comments
 (0)