mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-28 22:24:28 +00:00
For PR1291:
Change to use PathWithStatus git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -193,7 +193,7 @@ class ArchiveMember {
|
|||||||
ArchiveMember* next; ///< Pointer to next archive member
|
ArchiveMember* next; ///< Pointer to next archive member
|
||||||
ArchiveMember* prev; ///< Pointer to previous archive member
|
ArchiveMember* prev; ///< Pointer to previous archive member
|
||||||
Archive* parent; ///< Pointer to parent archive
|
Archive* parent; ///< Pointer to parent archive
|
||||||
sys::Path path; ///< Path of file containing the member
|
sys::PathWithStatus path; ///< Path of file containing the member
|
||||||
sys::FileStatus info; ///< Status info (size,mode,date)
|
sys::FileStatus info; ///< Status info (size,mode,date)
|
||||||
unsigned flags; ///< Flags about the archive member
|
unsigned flags; ///< Flags about the archive member
|
||||||
const void* data; ///< Data for the member
|
const void* data; ///< Data for the member
|
||||||
|
@ -26,7 +26,8 @@ namespace llvm {
|
|||||||
/// option, it will set the string to an error message if an error occurs, or
|
/// option, it will set the string to an error message if an error occurs, or
|
||||||
/// if the files are different.
|
/// if the files are different.
|
||||||
///
|
///
|
||||||
int DiffFilesWithTolerance(const sys::Path &FileA, const sys::Path &FileB,
|
int DiffFilesWithTolerance(const sys::PathWithStatus &FileA,
|
||||||
|
const sys::PathWithStatus &FileB,
|
||||||
double AbsTol, double RelTol,
|
double AbsTol, double RelTol,
|
||||||
std::string *Error = 0);
|
std::string *Error = 0);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user