diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-20 15:06:35 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-20 15:06:35 +0000 |
commit | 7cf7c51cc4b0f5b2cce74f6177e766d81ecdeb1d (patch) | |
tree | 84f07bb9346840673ff4b88cd00bb37c766be38c /llvm/lib/Support | |
parent | 03ec9545f5199aeb5931fc6e7d402664c1677fa3 (diff) | |
download | bcm5719-llvm-7cf7c51cc4b0f5b2cce74f6177e766d81ecdeb1d.tar.gz bcm5719-llvm-7cf7c51cc4b0f5b2cce74f6177e766d81ecdeb1d.zip |
Rename fs::GetUniqueID to fs::getUniqueID to match the style guide.
llvm-svn: 184431
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Unix/PathV2.inc | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Windows/PathV2.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Unix/PathV2.inc b/llvm/lib/Support/Unix/PathV2.inc index a806083b193..9602daad08f 100644 --- a/llvm/lib/Support/Unix/PathV2.inc +++ b/llvm/lib/Support/Unix/PathV2.inc @@ -356,7 +356,7 @@ error_code file_size(const Twine &path, uint64_t &result) { return error_code::success(); } -error_code GetUniqueID(const Twine Path, uint64_t &Result) { +error_code getUniqueID(const Twine Path, uint64_t &Result) { SmallString<128> Storage; StringRef P = Path.toNullTerminatedStringRef(Storage); diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/PathV2.inc index e6888f93e68..8815b0ec2f7 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/PathV2.inc @@ -425,7 +425,7 @@ error_code file_size(const Twine &path, uint64_t &result) { return error_code::success(); } -error_code GetUniqueID(const Twine Path, uint64_t &Result) { +error_code getUniqueID(const Twine Path, uint64_t &Result) { file_status Status; if (error_code E = status(Path, Status)) return E; |