diff options
author | Jim Lin <tclin914@gmail.com> | 2020-02-18 10:48:38 +0800 |
---|---|---|
committer | Jim Lin <tclin914@gmail.com> | 2020-02-18 10:49:13 +0800 |
commit | 466f8843f526b03c8944a46af5ebb374133b5389 (patch) | |
tree | cc70f008c07ca4995549aa8003240a42a0de5f14 /clang/lib/Serialization/ModuleManager.cpp | |
parent | fa75bffbbbcf400217583f1afed9ec875b395bed (diff) | |
download | llvm-466f8843f526b03c8944a46af5ebb374133b5389.zip llvm-466f8843f526b03c8944a46af5ebb374133b5389.tar.gz llvm-466f8843f526b03c8944a46af5ebb374133b5389.tar.bz2 |
[NFC] Remove trailing space
sed -Ei 's/[[:space:]]+$//' include/**/*.{def,h,td} lib/**/*.{cpp,h,td}
Diffstat (limited to 'clang/lib/Serialization/ModuleManager.cpp')
-rw-r--r-- | clang/lib/Serialization/ModuleManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Serialization/ModuleManager.cpp b/clang/lib/Serialization/ModuleManager.cpp index 7406c87..9b326d2 100644 --- a/clang/lib/Serialization/ModuleManager.cpp +++ b/clang/lib/Serialization/ModuleManager.cpp @@ -436,7 +436,7 @@ bool ModuleManager::lookupModuleFile(StringRef FileName, // Open the file immediately to ensure there is no race between stat'ing and // opening the file. - auto FileOrErr = FileMgr.getFile(FileName, /*OpenFile=*/true, + auto FileOrErr = FileMgr.getFile(FileName, /*OpenFile=*/true, /*CacheFailure=*/false); if (!FileOrErr) { File = nullptr; |