From 9b686c04e1cd1f1455cc9d0f5f216cf28696e52f Mon Sep 17 00:00:00 2001 From: Leonid Fedorov Date: Tue, 15 Feb 2022 14:23:08 +0000 Subject: [PATCH] wrong return type --- dbcon/execplan/arithmeticcolumn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/execplan/arithmeticcolumn.cpp b/dbcon/execplan/arithmeticcolumn.cpp index 70bf7be81..d7fb57027 100644 --- a/dbcon/execplan/arithmeticcolumn.cpp +++ b/dbcon/execplan/arithmeticcolumn.cpp @@ -283,7 +283,7 @@ const string ArithmeticColumn::nextToken(string::size_type& pos, char end) const msg.append(1, end); msg.append(" found in " + fData); throw invalid_argument(msg); - return 0; + return {}; } ostream& operator<<(ostream& output, const ArithmeticColumn& rhs)