refs #628 Use explicit construction syntax for std::tuple to satisfy GCC 5.

This commit is contained in:
Mathew Sutcliffe
2016-04-03 19:25:43 +01:00
parent d36f003817
commit d20219437e

View File

@@ -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.