Changeset ddd287d in mainline


Ignore:
Timestamp:
2018-07-05T21:41:24Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69cc156
Parents:
28cb7843
git-author:
Dzejrou <dzejrou@…> (2018-05-17 23:45:08)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
Message:

cpp: resolved conflict between tuple constructors when sizeof…(Ts) == 0

File:
1 edited

Legend:

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

    r28cb7843 rddd287d  
    329329            { /* DUMMY BODY */ }
    330330
    331             constexpr explicit tuple(const Ts&... ts)
     331            constexpr explicit tuple(
     332                const Ts&... ts, enable_if_t<sizeof...(Ts) != 0>* = nullptr)
    332333                : base_t(ts...)
    333334            { /* DUMMY BODY */ }
Note: See TracChangeset for help on using the changeset viewer.