Ignore:
Timestamp:
2018-07-05T21:41:21Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c71c171
Parents:
6d8a63a
git-author:
Dzejrou <dzejrou@…> (2018-04-20 00:11:54)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:21)
Message:

cpp: revamped c header wrappers, now only include standard symbols, others are in std::hel, fixed some bugs

File:
1 edited

Legend:

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

    r6d8a63a rde53138  
    3030#define LIBCPP_UTILITY
    3131
     32#include <cstdint>
    3233#include <type_traits>
    3334
     
    7879    constexpr T&& forward(remove_reference_t<T>&& t) noexcept
    7980    {
    80         // TODO: check if t is lvalue reference, if it is, the program
    81         //       is ill-formed according to the standard
    8281        return static_cast<T&&>(t);
    8382    }
     
    236235    namespace aux
    237236    {
    238         template<class T, std::uintmax_t N>
     237        template<class T, uintmax_t N>
    239238        struct make_integer_sequence
    240239        {
Note: See TracChangeset for help on using the changeset viewer.