mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
Fix trivial typo in llvm_move.
llvm-svn: 156288
This commit is contained in:
parent
02644ca6b7
commit
98163678d4
@ -33,7 +33,7 @@
|
||||
/// llvm_move - Expands to ::std::move if the compiler supports
|
||||
/// r-value references; otherwise, expands to the argument.
|
||||
#if LLVM_USE_RVALUE_REFERENCES
|
||||
#define llvm_move(value) (::std::move(arg))
|
||||
#define llvm_move(value) (::std::move(value))
|
||||
#else
|
||||
#define llvm_move(value) (value)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user