summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-06-20 15:20:11 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-06-20 15:20:11 +0000
commit438600e697448ff704770825d6b92d95ee250905 (patch)
treee18f5eaf62d454030cf483c48bdc827a5445b928 /include
parent9aa3365426ef5b8b82361945bc6a8dbcd3d2bc2a (diff)
downloadllvm-438600e697448ff704770825d6b92d95ee250905.tar.gz
llvm-438600e697448ff704770825d6b92d95ee250905.tar.bz2
llvm-438600e697448ff704770825d6b92d95ee250905.tar.xz
Remove the transitional GetUniqueID.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184433 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/FileSystem.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index c1e11c0052..6b3b126ea0 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -565,10 +565,6 @@ error_code identify_magic(const Twine &path, file_magic &result);
error_code getUniqueID(const Twine Path, uint64_t &Result);
-inline error_code GetUniqueID(const Twine Path, uint64_t &Result) {
- return getUniqueID(Path, Result);
-}
-
/// This class represents a memory mapped file. It is based on
/// boost::iostreams::mapped_file.
class mapped_file_region {