| 133 | |
| 134 | template <typename TOut, typename TIn> |
| 135 | TOut convertNumber(TIn value) { |
| 136 | return canConvertNumber<TOut>(value) ? TOut(value) : 0; |
| 137 | } |
| 138 | |
| 139 | ARDUINOJSON_END_PRIVATE_NAMESPACE |
| 140 |
nothing calls this directly
no outgoing calls
no test coverage detected