Skip to content

Commit cc3fc4c

Browse files
committed
Removed some incomplete code for the Windows platform.
Please, refer to the comment below. ros2/rclcpp#2205 (comment) Signed-off-by: Shoji Morita <[email protected]>
1 parent de9fc87 commit cc3fc4c

File tree

4 files changed

+0
-46
lines changed

4 files changed

+0
-46
lines changed

CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ target_include_directories(${PROJECT_NAME} PUBLIC
3535
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
3636
target_sources(${PROJECT_NAME} PRIVATE
3737
src/threads/posix_thread.cpp)
38-
elseif(WIN32)
39-
target_sources(${PROJECT_NAME} PRIVATE
40-
src/threads/windows_thread.cpp)
4138
endif()
4239
if(WIN32)
4340
target_compile_definitions(${PROJECT_NAME}

include/rcpputils/threads.hpp

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717

1818
#if defined(__linux__)
1919
#include "rcpputils/threads/posix/thread.hpp"
20-
#elif defined(_WIN32)
21-
#include "rcpputils/threads/windows/thread.hpp"
2220
#else
2321
#include "rcpputils/threads/std/thread.hpp"
2422
#endif

include/rcpputils/threads/windows/thread.hpp

-22
This file was deleted.

src/threads/windows_thread.cpp

-19
This file was deleted.

0 commit comments

Comments
 (0)