Confused by default constructor description of std::tuple in the ISO C++ Standard

后端 未结 3 1718
孤独总比滥情好
孤独总比滥情好 2021-01-17 08:38

The Standard says that std::tuple has the following member functions

constexpr tuple();
explicit tuple(const Types&...);

C

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-17 09:12

    At first sight, the ambiguity would only matter at the point where it's called, and then you have normal overload resolution.

提交回复
热议问题