| 6028 | // Used to squelch warnings |
| 6029 | template <typename P> |
| 6030 | SafeInt<ptrdiff_t, SafeIntDefaultExceptionHandler> SafePtrDiff(const P* p1, const P* p2) |
| 6031 | { |
| 6032 | return SafeInt<ptrdiff_t, SafeIntDefaultExceptionHandler>( p1 - p2 ); |
| 6033 | } |
| 6034 | |
| 6035 | // Externally defined functions for the case of U op SafeInt< T, E > |
| 6036 | template < typename T, typename U, typename E > |
nothing calls this directly
no outgoing calls
no test coverage detected