Changeset 2084bfcd in mainline for uspace/lib/cpp/include/impl/utility.hpp
- Timestamp:
- 2018-07-05T21:41:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ac215d
- Parents:
- bc7ec7c
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2017-10-13 17:53:25)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/impl/utility.hpp
rbc7ec7c r2084bfcd 29 29 #ifndef LIBCPP_UTILITY 30 30 #define LIBCPP_UTILITY 31 32 #include <type_traits> 31 33 32 34 namespace std … … 81 83 82 84 template<class T> 83 inline constexpr remove_reference_t<T>&& move(T&& ) noexcept85 inline constexpr remove_reference_t<T>&& move(T&& t) noexcept 84 86 { 85 87 return static_cast<remove_reference_t<T>&&>(t);
Note:
See TracChangeset
for help on using the changeset viewer.