aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp
diff options
context:
space:
mode:
authorPiotr Zegar <me@piotrzegar.pl>2023-08-26 17:28:06 +0000
committerPiotr Zegar <me@piotrzegar.pl>2023-08-27 08:52:10 +0000
commit87c4113708b88ef20d3cac96e2fd43e5c3eabf91 (patch)
treec655ed5942fdc57c1fd6c786efe0d04d24d3f4b4 /clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp
parentac80017522241a30ed6b87273e1a3b39fb73c6dc (diff)
downloadllvm-87c4113708b88ef20d3cac96e2fd43e5c3eabf91.zip
llvm-87c4113708b88ef20d3cac96e2fd43e5c3eabf91.tar.gz
llvm-87c4113708b88ef20d3cac96e2fd43e5c3eabf91.tar.bz2
[clang-tidy][NFC] Fix modernize-use-using findings
Fix issues found by clang-tidy in clang-tidy source directory.
Diffstat (limited to 'clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp b/clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp
index 3bfd667..b76a370 100644
--- a/clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp
+++ b/clang-tools-extra/clang-tidy/llvm/IncludeOrderCheck.cpp
@@ -40,7 +40,7 @@ private:
bool IsMainModule; ///< true if this was the first include in a file
};
- typedef std::vector<IncludeDirective> FileIncludes;
+ using FileIncludes = std::vector<IncludeDirective>;
std::map<clang::FileID, FileIncludes> IncludeDirectives;
bool LookForMainModule;