diff --git a/include/engine/data_watchdog.hpp b/include/engine/data_watchdog.hpp index 97359844af0..a655c4a19d5 100644 --- a/include/engine/data_watchdog.hpp +++ b/include/engine/data_watchdog.hpp @@ -60,7 +60,8 @@ class DataWatchdogImpl( std::make_shared( std::vector{ - static_region.shm_key, updatable_region.shm_key}), static_region.timestamp); + static_region.shm_key, updatable_region.shm_key}), + static_region.timestamp); } watcher = std::thread(&DataWatchdogImpl::Run, this); @@ -115,7 +116,8 @@ class DataWatchdogImpl( std::make_shared( std::vector{ - static_region.shm_key, updatable_region.shm_key}), static_region.timestamp); + static_region.shm_key, updatable_region.shm_key}), + static_region.timestamp); } util::Log() << "DataWatchdog thread stopped"; diff --git a/include/engine/datafacade_factory.hpp b/include/engine/datafacade_factory.hpp index 67352538d80..5b459f31c29 100644 --- a/include/engine/datafacade_factory.hpp +++ b/include/engine/datafacade_factory.hpp @@ -71,7 +71,8 @@ template