diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-11-30 11:45:22 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-11-30 11:45:22 +0000 |
commit | f12e3a67dbf01a6044c5749fde9d42c527bef7d3 (patch) | |
tree | bd684ea627c71afc11b8f7c1d151882082e5fd25 /llvm/lib/Support/Windows | |
parent | 817b60af38a48f9f838edcecca5f8a2172dfb287 (diff) | |
download | bcm5719-llvm-f12e3a67dbf01a6044c5749fde9d42c527bef7d3.tar.gz bcm5719-llvm-f12e3a67dbf01a6044c5749fde9d42c527bef7d3.zip |
Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.
Rationale:
1) This was the name in the comment block. ;]
2) It matches Clang's __has_feature naming convention.
3) It matches other compiler-feature-test conventions.
Sorry for the noise. =]
I've also switch the comment block to use a \brief tag and not duplicate
the name.
llvm-svn: 168996
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/PathV2.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/PathV2.inc index 3dfac66b77c..c7ef8278a22 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/PathV2.inc @@ -861,7 +861,7 @@ mapped_file_region::~mapped_file_region() { ::CloseHandle(FileHandle); } -#if LLVM_USE_RVALUE_REFERENCES +#if LLVM_HAS_RVALUE_REFERENCES mapped_file_region::mapped_file_region(mapped_file_region &&other) : Mode(other.Mode) , Size(other.Size) |