Low-level assertion failure handler for not_null Called when a nullptr is detected during construction or assignment Platform-specific implementation to avoid circular dependencies
| 22 | // Called when a nullptr is detected during construction or assignment |
| 23 | // Platform-specific implementation to avoid circular dependencies |
| 24 | void not_null_assert_failed(const char* message) { |
| 25 | FL_ASSERT(false, message); |
| 26 | } |
| 27 | |
| 28 | } // namespace detail |
| 29 | } // namespace fl |
no outgoing calls
no test coverage detected