A function which always returns false
| 21 | } |
| 22 | /// A function which always returns false |
| 23 | constexpr bool returnFalse() noexcept { |
| 24 | return false; |
| 25 | } |
| 26 | |
| 27 | template <typename Fn, bool Copyable, std::size_t Capacity, bool Throwing, |
| 28 | bool Owning, typename... Additional> |
nothing calls this directly
no outgoing calls
no test coverage detected