mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
API change Path::isSpecialFile to Path::isRegularFile, improve semantics in regards to comments from 89765 post review.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89848 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -358,8 +358,10 @@ Path::canExecute() const {
|
||||
}
|
||||
|
||||
bool
|
||||
Path::isSpecialFile() const {
|
||||
return false;
|
||||
Path::isRegularFile() const {
|
||||
if (isDirectory())
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
std::string
|
||||
|
Reference in New Issue
Block a user