as_lvalue.h 932 B

12345678910111213141516171819202122232425262728293031323334353637
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___UTILITY_AS_LVALUE_H
  10. #define _LIBCPP___UTILITY_AS_LVALUE_H
  11. #include <__config>
  12. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  13. # pragma GCC system_header
  14. #endif
  15. _LIBCPP_PUSH_MACROS
  16. #include <__undef_macros>
  17. _LIBCPP_BEGIN_NAMESPACE_STD
  18. #ifndef _LIBCPP_CXX03_LANG
  19. template <class _Tp>
  20. _LIBCPP_HIDE_FROM_ABI constexpr _Tp& __as_lvalue(_LIBCPP_LIFETIMEBOUND _Tp&& __t) {
  21. return static_cast<_Tp&>(__t);
  22. }
  23. #endif // !_LIBCPP_CXX03_LANG
  24. _LIBCPP_END_NAMESPACE_STD
  25. _LIBCPP_POP_MACROS
  26. #endif // _LIBCPP___UTILITY_AS_LVALUE_H