| 111 | template <typename T, |
| 112 | std::enable_if_t<!HasSecret<T>::value>* = nullptr> |
| 113 | inline std::string ThriftDebugString(const T& t) { |
| 114 | return apache::thrift::ThriftDebugString(t); |
| 115 | } |
| 116 | |
| 117 | /// Raise compile-time error when ThriftDebugString() is used on an object that has |
| 118 | /// a session secret. |
no outgoing calls
no test coverage detected