mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-21 04:45:31 +08:00
refs #628 Use explicit construction syntax for std::tuple to satisfy GCC 5.
This commit is contained in:
@@ -161,7 +161,7 @@ namespace BlackMisc
|
|||||||
template <typename... Members>
|
template <typename... Members>
|
||||||
constexpr static CMetaMemberList<Members...> makeMetaMemberList(Members... members)
|
constexpr static CMetaMemberList<Members...> makeMetaMemberList(Members... members)
|
||||||
{
|
{
|
||||||
return { { members... } };
|
return { Private::tuple<Members...>(members...) };
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Return a CMetaMethod of type deduced from the type of the member.
|
//! Return a CMetaMethod of type deduced from the type of the member.
|
||||||
|
|||||||
Reference in New Issue
Block a user