| 29 | #ifdef TENSORFLOW_LITE_PROTOS |
| 30 | template <class T> |
| 31 | string DebugStringIfAvailable(T proto) { |
| 32 | return "[DebugString not available with lite protos]"; |
| 33 | } |
| 34 | #else |
| 35 | template <class T> |
| 36 | auto DebugStringIfAvailable(T proto) -> decltype(proto.DebugString()) { |
no test coverage detected