I get a multiple definition error that I never got before which is not clear to me why! After checking it looks like there are two kSessionTimeout defined where we have this constant defined two times: https://github.com/SICKAG/sick_visionary_cpp_base/blob/a2361e48ce10500a8958cffdbe83943e4f6e1a5c/src/VisionaryControl.cpp#L27 https://github.com/SICKAG/sick_visionary_cpp_base/blob/a2361e48ce10500a8958cffdbe83943e4f6e1a5c/src/VisionaryControl.h#L36 in order to avoid this error I had to remove the line VisionaryControl.cpp and use this in the VisionaryControl.h ```cpp static constexpr std::chrono::seconds kSessionTimeout = std::chrono::seconds(5); ```