Skip to content

Commit

Permalink
s3select: replace malformed string(0) (#157)
Browse files Browse the repository at this point in the history
C++23 does not allow int to string conversions.

Signed-off-by: Ronen Friedman <rfriedma@redhat.com>
  • Loading branch information
ronen-fr committed May 7, 2024
1 parent f333ec8 commit bf65213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/s3select_functions.h
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ class __function : public base_statement

std::string print(int ident) override
{
return std::string(0);
return std::string{};
}

void push_argument(base_statement* arg)
Expand Down

0 comments on commit bf65213

Please sign in to comment.