[PATCH] D49618: [clang-tidy] remove private decltypeType in TrailingReturnType

Jonas Toth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 23 09:30:22 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL337707: [clang-tidy] remove private decltypeType in TrailingReturnType (authored by JonasToth, committed by ).
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

https://reviews.llvm.org/D49618

Files:
  clang-tools-extra/trunk/clang-tidy/fuchsia/TrailingReturnCheck.cpp


Index: clang-tools-extra/trunk/clang-tidy/fuchsia/TrailingReturnCheck.cpp
===================================================================
--- clang-tools-extra/trunk/clang-tidy/fuchsia/TrailingReturnCheck.cpp
+++ clang-tools-extra/trunk/clang-tidy/fuchsia/TrailingReturnCheck.cpp
@@ -19,8 +19,6 @@
 namespace fuchsia {
 
 namespace {
-const internal::VariadicDynCastAllOfMatcher<Type, DecltypeType> decltypeType;
-
 AST_MATCHER(FunctionDecl, hasTrailingReturn) {
   return Node.getType()->castAs<FunctionProtoType>()->hasTrailingReturn();
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49618.156806.patch
Type: text/x-patch
Size: 546 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180723/0fe9635b/attachment.bin>


More information about the llvm-commits mailing list