[clang-tools-extra] 7f4e744 - Another speculative fix for the Windows bots.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 17 07:24:38 PST 2020
Author: Aaron Ballman
Date: 2020-01-17T10:23:45-05:00
New Revision: 7f4e744b90ec7a5cd8067cac7032ef36607aa4b8
URL: https://github.com/llvm/llvm-project/commit/7f4e744b90ec7a5cd8067cac7032ef36607aa4b8
DIFF: https://github.com/llvm/llvm-project/commit/7f4e744b90ec7a5cd8067cac7032ef36607aa4b8.diff
LOG: Another speculative fix for the Windows bots.
Hopefully fixes: http://45.33.8.238/win/6040/step_4.txt
Added:
Modified:
clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp b/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
index 4f49aea1c9ba..aad0ad94456a 100644
--- a/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
+++ b/clang-tools-extra/clang-tidy/bugprone/ReservedIdentifierCheck.cpp
@@ -12,6 +12,7 @@
#include "clang/AST/ASTContext.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
#include <algorithm>
+#include <cctype>
using namespace clang::ast_matchers;
More information about the cfe-commits
mailing list