| 1327 | // namespace alone is not enough because the function can be found by ADL. |
| 1328 | template<typename To> |
| 1329 | inline To ImplicitCast_(To x) { return x; } |
| 1330 | |
| 1331 | // When you upcast (that is, cast a pointer from type Foo to type |
| 1332 | // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts |
nothing calls this directly
no outgoing calls
no test coverage detected