projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8a3720
)
Revert "removed redundant comment in format::getStyle."
author
Eric Liu
<ioeric@google.com>
Thu, 24 Mar 2016 11:24:49 +0000
(11:24 +0000)
committer
Eric Liu
<ioeric@google.com>
Thu, 24 Mar 2016 11:24:49 +0000
(11:24 +0000)
This reverts commit r264254.
llvm-svn: 264256
clang/lib/Format/Format.cpp
patch
|
blob
|
history
diff --git
a/clang/lib/Format/Format.cpp
b/clang/lib/Format/Format.cpp
index
40ff01f
..
6d03b62
100644
(file)
--- a/
clang/lib/Format/Format.cpp
+++ b/
clang/lib/Format/Format.cpp
@@
-2144,7
+2144,8
@@
FormatStyle getStyle(StringRef StyleName, StringRef FileName,
llvm::sys::path::append(ConfigFile, ".clang-format");
DEBUG(llvm::dbgs() << "Trying " << ConfigFile << "...\n");
-
+ // Ignore errors from is_regular_file: we only need to know if we can read
+ // the file or not.
Status = FS->status(ConfigFile.str());
bool IsFile =
Status && (Status->getType() == llvm::sys::fs::file_type::regular_file);