Skip to content

Commit

Permalink
Fix -Wdeprecated-literal-operator warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtum committed Oct 30, 2024
1 parent 0886fd8 commit 70ae80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/beast/core/detail/string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace string_literals {

inline
string_view
operator"" _sv(char const* p, std::size_t n)
operator""_sv(char const* p, std::size_t n)
{
return string_view{p, n};
}
Expand Down

0 comments on commit 70ae80d

Please sign in to comment.