Fix unused variable warnings. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 19 Aug 2020 13:14:44 +0000 (14:14 +0100)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 19 Aug 2020 13:34:32 +0000 (14:34 +0100)
clang-tools-extra/clangd/refactor/tweaks/DefineOutline.cpp

index 9f68e24..66d9c4c 100644 (file)
@@ -388,9 +388,9 @@ public:
 
     // Bail out if this is a function template or specialization, as their
     // definitions need to be visible in all including translation units.
-    if (auto *PT = Source->getDescribedFunctionTemplate())
+    if (Source->getDescribedFunctionTemplate())
       return false;
-    if (auto *TSI = Source->getTemplateSpecializationInfo())
+    if (Source->getTemplateSpecializationInfo())
       return false;
 
     // Bail out in templated classes, as it is hard to spell the class name, i.e