This revision was automatically updated to reflect the committed changes. Closed by commit rGd0a98efb6819: [clang] Fix unused variable warning in SemaConcept.cpp (authored by Victor Komarov <v...@fb.com>, committed by hokein).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D140711/new/ https://reviews.llvm.org/D140711 Files: clang/lib/Sema/SemaConcept.cpp Index: clang/lib/Sema/SemaConcept.cpp =================================================================== --- clang/lib/Sema/SemaConcept.cpp +++ clang/lib/Sema/SemaConcept.cpp @@ -1354,6 +1354,7 @@ }; const auto *FD2 = dyn_cast<FunctionDecl>(D2); (void)IsExpectedEntity; + (void)FD1; (void)FD2; assert(IsExpectedEntity(FD1) && FD2 && IsExpectedEntity(FD2) && "use non-instantiated function declaration for constraints partial "
Index: clang/lib/Sema/SemaConcept.cpp =================================================================== --- clang/lib/Sema/SemaConcept.cpp +++ clang/lib/Sema/SemaConcept.cpp @@ -1354,6 +1354,7 @@ }; const auto *FD2 = dyn_cast<FunctionDecl>(D2); (void)IsExpectedEntity; + (void)FD1; (void)FD2; assert(IsExpectedEntity(FD1) && FD2 && IsExpectedEntity(FD2) && "use non-instantiated function declaration for constraints partial "
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits