aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/System/MappedFile.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-07 18:52:17 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-07 18:52:17 +0000
commit2ae9d11b7c0fd54e0b5298fb4fcf17b6ee9d5c91 (patch)
tree47499784611ea34bf3d97785c62b6eebf4a7057d /include/llvm/System/MappedFile.h
parente9ed4452bce4f5a7f8005d7ebd649a20c22ef268 (diff)
For PR1291:
Implement the PathWithStatus class and its use throughout lib/System. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35742 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System/MappedFile.h')
-rw-r--r--include/llvm/System/MappedFile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/System/MappedFile.h b/include/llvm/System/MappedFile.h
index f82d6fe942..6276bc3b2c 100644
--- a/include/llvm/System/MappedFile.h
+++ b/include/llvm/System/MappedFile.h
@@ -152,7 +152,7 @@ namespace sys {
/// @name Data
/// @{
private:
- sys::Path path_; ///< Path to the file.
+ sys::PathWithStatus path_; ///< Path to the file.
int options_; ///< Options used to create the mapping
void* base_; ///< Pointer to the base memory address
mutable MappedFileInfo* info_; ///< Platform specific info for the mapping