mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
This method takes sys::Path objects now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf989fd2a3
commit
417c4d5b4a
@ -33,8 +33,8 @@ int main(int argc, char **argv) {
|
||||
cl::ParseCommandLineOptions(argc, argv);
|
||||
|
||||
std::string ErrorMsg;
|
||||
int DF = DiffFilesWithTolerance(File1, File2, AbsTolerance, RelTolerance,
|
||||
&ErrorMsg);
|
||||
int DF = DiffFilesWithTolerance(sys::Path(File1), sys::Path(File2),
|
||||
AbsTolerance, RelTolerance, &ErrorMsg);
|
||||
if (!ErrorMsg.empty())
|
||||
std::cerr << argv[0] << ": " << ErrorMsg << "\n";
|
||||
return DF;
|
||||
|
Loading…
Reference in New Issue
Block a user