summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-20 15:06:35 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-20 15:06:35 +0000
commit9aa3365426ef5b8b82361945bc6a8dbcd3d2bc2a (patch)
tree6c6c21414b9f715eddbed94f39510c37c20282a8 /lib
parentdd1b7c9685324beb385c33b8dfd5628c4836670f (diff)
downloadllvm-9aa3365426ef5b8b82361945bc6a8dbcd3d2bc2a.tar.gz
llvm-9aa3365426ef5b8b82361945bc6a8dbcd3d2bc2a.tar.bz2
llvm-9aa3365426ef5b8b82361945bc6a8dbcd3d2bc2a.tar.xz
Rename fs::GetUniqueID to fs::getUniqueID to match the style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184431 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Support/Unix/PathV2.inc2
-rw-r--r--lib/Support/Windows/PathV2.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Support/Unix/PathV2.inc b/lib/Support/Unix/PathV2.inc
index a806083b19..9602daad08 100644
--- a/lib/Support/Unix/PathV2.inc
+++ b/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/lib/Support/Windows/PathV2.inc b/lib/Support/Windows/PathV2.inc
index e6888f93e6..8815b0ec2f 100644
--- a/lib/Support/Windows/PathV2.inc
+++ b/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;