Ignore:
Timestamp:
2018-07-05T21:41:17Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
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)
Message:

cpp: moved utility to impl/utility.hpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/impl/utility.hpp

    rbc7ec7c r2084bfcd  
    2929#ifndef LIBCPP_UTILITY
    3030#define LIBCPP_UTILITY
     31
     32#include <type_traits>
    3133
    3234namespace std
     
    8183
    8284    template<class T>
    83     inline constexpr remove_reference_t<T>&& move(T&&) noexcept
     85    inline constexpr remove_reference_t<T>&& move(T&& t) noexcept
    8486    {
    8587        return static_cast<remove_reference_t<T>&&>(t);
Note: See TracChangeset for help on using the changeset viewer.