Skip to content

cmUVHandlePtr: Fix conversion to bool on Oracle Studio compiler

Brad King requested to merge brad.king/cmake:uv-handle-bool into master

The explicit operator bool() added by !8980 (merged) works in direct expressions like if(foo) but not compound expressions like if(foo && ...). Drop the explicit mark when compiling with Oracle Studio so we can at least compile valid code.

Merge request reports