Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2013-07-09 01:06:38 +0400
committerHoward Hinnant <hhinnant@apple.com>2013-07-09 01:06:38 +0400
commite0fe3d2e9680325f72a91ca18fd48d01b1016a67 (patch)
tree2374a842a0a75502d930428d3d88cd5842f93ebc /libcxx/include/utility
parenta7b0e5ddf88ce3072f76f67a825a591b1c6809b6 (diff)
War on tabs.
llvm-svn: 185865
Diffstat (limited to 'libcxx/include/utility')
-rw-r--r--libcxx/include/utility8
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/utility b/libcxx/include/utility
index a2cafbf42c79..bea463bbdb06 100644
--- a/libcxx/include/utility
+++ b/libcxx/include/utility
@@ -692,10 +692,10 @@ template<class _T1, class _T2 = _T1>
_LIBCPP_INLINE_VISIBILITY inline
_T1 exchange(_T1& __obj, _T2 && __new_value)
{
- _T1 __old_value = _VSTD::move(__obj);
- __obj = _VSTD::forward<_T2>(__new_value);
- return __old_value;
-}
+ _T1 __old_value = _VSTD::move(__obj);
+ __obj = _VSTD::forward<_T2>(__new_value);
+ return __old_value;
+}
#endif // _LIBCPP_STD_VER > 11
_LIBCPP_END_NAMESPACE_STD