From 96f4d5b7c6f41d9e4797b4c8d86a9ebe69a7dfe5 Mon Sep 17 00:00:00 2001 From: Kruglov Pavel <48961922+Avogar@users.noreply.github.com> Date: Fri, 17 Apr 2020 23:51:53 +0300 Subject: [PATCH] Fix build error --- src/Processors/Formats/Impl/MsgPackRowInputFormat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Processors/Formats/Impl/MsgPackRowInputFormat.h b/src/Processors/Formats/Impl/MsgPackRowInputFormat.h index d75197e8a23..92e4f5d0bd7 100644 --- a/src/Processors/Formats/Impl/MsgPackRowInputFormat.h +++ b/src/Processors/Formats/Impl/MsgPackRowInputFormat.h @@ -30,7 +30,7 @@ public: bool end_array(); /// This function will be called if error occurs in parsing - void parse_error(size_t parsed_offset, size_t error_offset); + [[noreturn]] void parse_error(size_t parsed_offset, size_t error_offset); /// Update info_stack void set_info(IColumn & column, DataTypePtr type);