[clang] [NFC] Move warning from CodeGen to Sema. (PR #107397)
Vlad Serebrennikov via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 12 07:40:21 PDT 2024
================
@@ -626,6 +626,11 @@ class Sema final : public SemaBase {
const llvm::MapVector<FieldDecl *, DeleteLocs> &
getMismatchingDeleteExpressions() const;
+ std::vector<std::tuple<SourceLocation, QualType, unsigned>>
+ ExcessPrecisionNotSatisfied;
----------------
Endilll wrote:
I think all three data members should be moved down to `SemaExpr.cpp` part.
https://github.com/llvm/llvm-project/pull/107397
More information about the cfe-commits
mailing list