mirror of
https://github.com/Kistler-Group/sdbus-cpp.git
synced 2026-04-28 18:13:36 +02:00
Add clang workaround comment
This commit is contained in:
committed by
GitHub
parent
7e61a83d09
commit
b81c4b494c
@@ -97,8 +97,11 @@ namespace sdbus {
|
||||
public:
|
||||
using std::tuple<_ValueTypes...>::tuple;
|
||||
|
||||
// Workaround for clang (where the above constructor inheritance doesn't work)
|
||||
Struct(const std::tuple<_ValueTypes...>& t)
|
||||
: std::tuple<_ValueTypes...>(t) {}
|
||||
: std::tuple<_ValueTypes...>(t)
|
||||
{
|
||||
}
|
||||
|
||||
template <std::size_t _I>
|
||||
auto& get()
|
||||
|
||||
Reference in New Issue
Block a user