| 961 | { |
| 962 | /// bitwise OR operator, returns <tt>a | b</tt> |
| 963 | __host__ __device__ __forceinline__ T operator()(const T &a, const T &b) const |
| 964 | { |
| 965 | return a | b; |
| 966 | } |
| 967 | }; |
| 968 | } |
| 969 |
nothing calls this directly
no outgoing calls
no test coverage detected