aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2012-08-15 19:16:27 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2012-08-15 19:16:27 +0000
commit118f194966d20460c2b1653e06c601e4b66c9b3f (patch)
tree7cd858dd691de34a618b027832740df1bd05a5ca /include
parent1ebd25e438444ae80ec3d9504fe2173b8306501d (diff)
downloadexternal_llvm-118f194966d20460c2b1653e06c601e4b66c9b3f.zip
external_llvm-118f194966d20460c2b1653e06c601e4b66c9b3f.tar.gz
external_llvm-118f194966d20460c2b1653e06c601e4b66c9b3f.tar.bz2
Properly test the LLVM_USE_RVALUE_REFERENCES macro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/FileSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/FileSystem.h b/include/llvm/Support/FileSystem.h
index b287a91..f4a9aa0 100644
--- a/include/llvm/Support/FileSystem.h
+++ b/include/llvm/Support/FileSystem.h
@@ -607,7 +607,7 @@ private:
public:
typedef char char_type;
-#ifdef LLVM_USE_RVALUE_REFERENCES
+#if LLVM_USE_RVALUE_REFERENCES
mapped_file_region(mapped_file_region&&);
mapped_file_region &operator =(mapped_file_region&&);
#endif