A function which always returns true
| 17 | |
| 18 | /// A function which always returns true |
| 19 | constexpr bool returnTrue() noexcept { |
| 20 | return true; |
| 21 | } |
| 22 | /// A function which always returns false |
| 23 | constexpr bool returnFalse() noexcept { |
| 24 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected