mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Remove unimplemented function prototypes from PathV2. They can be readded when someone cares enough.
Patch by Aaron Ballman! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139682 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -682,14 +682,12 @@ bool is_other(file_status status) {
|
||||
!is_symlink(status);
|
||||
}
|
||||
|
||||
void directory_entry::replace_filename(const Twine &filename, file_status st,
|
||||
file_status symlink_st) {
|
||||
void directory_entry::replace_filename(const Twine &filename, file_status st) {
|
||||
SmallString<128> path(Path.begin(), Path.end());
|
||||
path::remove_filename(path);
|
||||
path::append(path, filename);
|
||||
Path = path.str();
|
||||
Status = st;
|
||||
SymlinkStatus = symlink_st;
|
||||
}
|
||||
|
||||
error_code has_magic(const Twine &path, const Twine &magic, bool &result) {
|
||||
|
Reference in New Issue
Block a user