| 8 | #include "cmUVHandlePtr.h" |
| 9 | |
| 10 | static bool testBool() |
| 11 | { |
| 12 | cm::uv_async_ptr async; |
| 13 | cm::uv_handle_ptr handle; |
| 14 | cm::uv_idle_ptr idle; |
| 15 | cm::uv_pipe_ptr pipe; |
| 16 | cm::uv_process_ptr process; |
| 17 | cm::uv_signal_ptr signal; |
| 18 | cm::uv_stream_ptr stream; |
| 19 | cm::uv_timer_ptr timer; |
| 20 | cm::uv_tty_ptr tty; |
| 21 | return !async && !handle && !idle && !pipe && !process && !signal && |
| 22 | !stream && !timer && !tty; |
| 23 | } |
| 24 | |
| 25 | static bool testIdle() |
| 26 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…