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
Current std::vector declaration std::vector<PNIO_IOXS> input_module_state_;
It works even without volatile specifier, but if possible I would rather add it back. However I havn't figured out how to make std::vector "volatile" as previously in pointer style declaration
I have tried different combinations but nothing has compiled so far...
The text was updated successfully, but these errors were encountered:
file: cp1616_io_controller.h
Previous pointer style declaration
PNIO_IOXS volatile* volatile device_input_state_;
Current std::vector declaration
std::vector<PNIO_IOXS> input_module_state_;
It works even without volatile specifier, but if possible I would rather add it back. However I havn't figured out how to make std::vector "volatile" as previously in pointer style declaration
I have tried different combinations but nothing has compiled so far...
The text was updated successfully, but these errors were encountered: