summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-13 20:41:00 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-13 20:41:00 +0000
commitbbf97ea7d5832922b3c40b67701b5719bfcb772b (patch)
treebac0ca0984b4856214c7cefa9cd59eb951e88bdc /include
parent675e0ac0bfd6fb78423d9fbee9f50c1dec62c111 (diff)
downloadllvm-bbf97ea7d5832922b3c40b67701b5719bfcb772b.tar.gz
llvm-bbf97ea7d5832922b3c40b67701b5719bfcb772b.tar.bz2
llvm-bbf97ea7d5832922b3c40b67701b5719bfcb772b.tar.xz
Don't use PathV1.h in FileUtilities.h.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183941 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/FileUtilities.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Support/FileUtilities.h b/include/llvm/Support/FileUtilities.h
index c6feb9f426..79c59e4306 100644
--- a/include/llvm/Support/FileUtilities.h
+++ b/include/llvm/Support/FileUtilities.h
@@ -17,7 +17,6 @@
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/Path.h"
-#include "llvm/Support/PathV1.h"
namespace llvm {
@@ -28,8 +27,8 @@ namespace llvm {
/// option, it will set the string to an error message if an error occurs, or
/// if the files are different.
///
- int DiffFilesWithTolerance(const sys::PathWithStatus &FileA,
- const sys::PathWithStatus &FileB,
+ int DiffFilesWithTolerance(StringRef FileA,
+ StringRef FileB,
double AbsTol, double RelTol,
std::string *Error = 0);