diff options
author | karavashkin <[email protected]> | 2022-02-10 16:52:11 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:11 +0300 |
commit | 2d871ce6768b06ca47246e0750bb7936480676f9 (patch) | |
tree | cea338ae8552ad98a42db67ba707793226f4b647 | |
parent | 7303d36b292cb0752d41a44b9e187b51d00b1ac1 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
-rw-r--r-- | util/datetime/parser.rl6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datetime/parser.rl6 b/util/datetime/parser.rl6 index 931f09eae11..308620246ae 100644 --- a/util/datetime/parser.rl6 +++ b/util/datetime/parser.rl6 @@ -456,7 +456,7 @@ template<class TParser, class TResult, bool ThrowExceptionOnFailure = true> static inline TResult ParseUnsafe(const char* input, size_t len) { TResult r = Parse<TParser, TResult>(input, len, TResult::Max()); if (ThrowExceptionOnFailure && r == TResult::Max()) - ythrow TDateTimeParseException() << "error in datetime parsing. Input data: " << TStringBuf(input, len); + ythrow TDateTimeParseException() << "error in datetime parsing. Input data: " << TStringBuf(input, len); return r; } |