diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-20 22:02:10 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-20 22:02:10 +0000 |
commit | e34d6a5fac92e03e98ab1d772e71865dde28ce48 (patch) | |
tree | 47829606fa304761beac983b167ffafd8daf7c56 /llvm/lib/Support | |
parent | 1332988f5a62cb221db9e362f8f58c0352622b65 (diff) | |
download | bcm5719-llvm-e34d6a5fac92e03e98ab1d772e71865dde28ce48.tar.gz bcm5719-llvm-e34d6a5fac92e03e98ab1d772e71865dde28ce48.zip |
Remove last use of PathV1.h from Archive.cpp.
llvm-svn: 184484
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Unix/PathV2.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Support/Unix/PathV2.inc b/llvm/lib/Support/Unix/PathV2.inc index 4c76f28c66c..b036c74ad16 100644 --- a/llvm/lib/Support/Unix/PathV2.inc +++ b/llvm/lib/Support/Unix/PathV2.inc @@ -408,6 +408,8 @@ error_code status(const Twine &path, file_status &result) { result.fs_st_dev = status.st_dev; result.fs_st_ino = status.st_ino; result.fs_st_mtime = status.st_mtime; + result.fs_st_uid = status.st_uid; + result.fs_st_gid = status.st_gid; return error_code::success(); } |