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
This commit is contained in:
Rafael Espindola
2013-06-20 15:06:35 +00:00
parent dd1b7c9685
commit 9aa3365426
4 changed files with 12 additions and 8 deletions

View File

@ -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;