summaryrefslogtreecommitdiff
path: root/include/llvm/Support/FileSystem.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-01 09:27:28 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-01 09:27:28 +0000
commite56ffb951f76424cd6e9cc795bfc3b2e8033798f (patch)
treed08d80033c32a4c67d474d3c8de14d889f1fbce5 /include/llvm/Support/FileSystem.h
parentef6cf471125156a14a7f58f85fe487e59b0d130b (diff)
downloadllvm-e56ffb951f76424cd6e9cc795bfc3b2e8033798f.tar.gz
llvm-e56ffb951f76424cd6e9cc795bfc3b2e8033798f.tar.bz2
llvm-e56ffb951f76424cd6e9cc795bfc3b2e8033798f.tar.xz
[C++11] Remove the R-value reference #if usage from the ADT and Support
libraries. It is now always 1 in LLVM builds. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/FileSystem.h')
-rw-r--r--include/llvm/Support/FileSystem.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index d975a914ff..6f7dc315e8 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -664,10 +664,8 @@ private:
public:
typedef char char_type;
-#if LLVM_HAS_RVALUE_REFERENCES
mapped_file_region(mapped_file_region&&);
mapped_file_region &operator =(mapped_file_region&&);
-#endif
/// Construct a mapped_file_region at \a path starting at \a offset of length
/// \a length and with access \a mode.