fail(msg, err_ret = Json()) * * Mark this parse as failed. */
| 359 | * Mark this parse as failed. |
| 360 | */ |
| 361 | Json fail(string &&msg) { |
| 362 | return fail(move(msg), Json()); |
| 363 | } |
| 364 | |
| 365 | template <typename T> |
| 366 | T fail(string &&msg, const T err_ret) { |
no test coverage detected