You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when two structs with the same name, the linker many be confused. when LTO
is enabled, ODR checked is required.
```
parallel_chip_info.cpp:36:3: error: type ‘struct Conf’ violates the C++ One Definition Rule [-Werror=odr]
36 | } Conf;
| ^
spi_chip_info.cpp:20:3: note: a different type is defined in another translation unit
20 | } Conf;
```
Signed-off-by: Sasasu <[email protected]>
0 commit comments