Fix an inaccurate comment

llvm-svn: 222267
This commit is contained in:
Justin Bogner 2014-11-18 22:17:30 +00:00
parent 2020efb9fe
commit 4c8e8ec863
1 changed files with 1 additions and 2 deletions

View File

@ -75,8 +75,7 @@
/// \brief Does the compiler support r-value reference *this?
///
/// Sadly, this is separate from just r-value reference support because GCC
/// implemented everything but this thus far. No release of GCC yet has support
/// for this feature so it is enabled with Clang only.
/// implemented this later than everything else.
#if __has_feature(cxx_rvalue_references) || LLVM_GNUC_PREREQ(4, 8, 1)
#define LLVM_HAS_RVALUE_REFERENCE_THIS 1
#else