Introduce FileSystem::CalculateMD5AsString that supports any platform and make existing FileSystem::CalculateMD5 to use it.

http://reviews.llvm.org/D7771

llvm-svn: 230036
This commit is contained in:
Oleksiy Vyalov
2015-02-20 18:34:03 +00:00
parent e8595de647
commit 7a9e76216b
6 changed files with 78 additions and 33 deletions

View File

@@ -138,9 +138,3 @@ FileSystem::Readlink(const char *path, char *buf, size_t buf_len)
::CloseHandle(h);
return error;
}
bool
FileSystem::CalculateMD5(const FileSpec &file_spec, uint64_t &low, uint64_t &high)
{
return false;
}