Skip to content

Commit

Permalink
Refs #20301: fix Windows warning
Browse files Browse the repository at this point in the history
Signed-off-by: JLBuenoLopez-eProsima <[email protected]>
  • Loading branch information
JLBuenoLopez committed Mar 6, 2024
1 parent d293548 commit 9dc7642
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ static inline bool ros_super_client_env()
return false;
}

template<class charT>
std::basic_ostream<charT>& operator <<(
std::basic_ostream<charT>& output,
const RemoteServerList_t& /*list*/)
{
return output;
}

} // namespace rtps
} // namespace fastdds

Expand Down
1 change: 1 addition & 0 deletions test/unittest/rtps/domain/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ target_include_directories(
${PROJECT_SOURCE_DIR}/include
${PROJECT_BINARY_DIR}/include
${PROJECT_SOURCE_DIR}/src/cpp
${Asio_INCLUDE_DIR}
)

target_link_libraries(
Expand Down

0 comments on commit 9dc7642

Please sign in to comment.