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 | 3fdd2ef74565033d63d89a68dc089bcc560098ee (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util | |
parent | 2d871ce6768b06ca47246e0750bb7936480676f9 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util')
-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 308620246ae..931f09eae11 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; } |