mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 11:55:35 +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>
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user