| 58 | // Implementation of `cel::InstanceOf`. |
| 59 | template <typename To> |
| 60 | struct ABSL_DEPRECATED("Use Is member functions instead.") |
| 61 | InstanceOfImpl final { |
| 62 | static_assert(!std::is_pointer_v<To>, "To must not be a pointer"); |
| 63 | static_assert(!std::is_array_v<To>, "To must not be an array"); |
no outgoing calls
no test coverage detected