forked from Kistler-Group/sdbus-cpp
Revert modification for clang, for now it fails on gcc
This commit is contained in:
@@ -99,10 +99,11 @@ namespace sdbus {
|
|||||||
using std::tuple<_ValueTypes...>::tuple;
|
using std::tuple<_ValueTypes...>::tuple;
|
||||||
|
|
||||||
// Workaround for clang (where the above constructor inheritance doesn't work)
|
// Workaround for clang (where the above constructor inheritance doesn't work)
|
||||||
Struct(const std::tuple<_ValueTypes...>& t)
|
// However, with this ctor, it doesn't work on gcc :-( TODO Investigate proper solution.
|
||||||
: std::tuple<_ValueTypes...>(t)
|
//Struct(const std::tuple<_ValueTypes...>& t)
|
||||||
{
|
// : std::tuple<_ValueTypes...>(t)
|
||||||
}
|
//{
|
||||||
|
//}
|
||||||
|
|
||||||
template <std::size_t _I>
|
template <std::size_t _I>
|
||||||
auto& get()
|
auto& get()
|
||||||
|
Reference in New Issue
Block a user