commit | c84155ff6c1024a23707f4d349e2c1c17213d6cd | [log] [tgz] |
---|---|---|
author | Julie Hockett <juliehockett@google.com> | Tue Aug 14 15:38:59 2018 +0000 |
committer | Julie Hockett <juliehockett@google.com> | Tue Aug 14 15:38:59 2018 +0000 |
tree | 09299373e073e08c30a24d9ed9ba5492ebb995d9 | |
parent | 52c88a7c0edaa143644a35c565c5af009bcea1ed [diff] [blame] |
[clang-doc] Fix unused variable Differential Revision: https://reviews.llvm.org/D50709 llvm-svn: 339685
diff --git a/clang-tools-extra/clang-doc/Mapper.cpp b/clang-tools-extra/clang-doc/Mapper.cpp index 6131a35..0b00bd1 100644 --- a/clang-tools-extra/clang-doc/Mapper.cpp +++ b/clang-tools-extra/clang-doc/Mapper.cpp
@@ -30,7 +30,7 @@ return true; // Skip function-internal decls. - if (const DeclContext *F = D->getParentFunctionOrMethod()) + if (D->getParentFunctionOrMethod()) return true; llvm::SmallString<128> USR;