Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix new Clang 20 Waring -Wdeprecated-literal-operator #160

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/tao/json/binary.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ namespace tao::json
inline namespace literals
{
template< char... Cs >
[[nodiscard]] std::vector< std::byte > operator"" _binary()
[[nodiscard]] std::vector< std::byte > operator""_binary()
{
return internal::unhex< std::vector< std::byte >, Cs... >();
}
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/from_string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace tao::json

inline namespace literals
{
[[nodiscard]] inline value operator"" _json( const char* data, const std::size_t size )
[[nodiscard]] inline value operator""_json( const char* data, const std::size_t size )
{
return json::from_string( data, size, "literal" );
}
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/jaxn/from_string.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace tao::json::jaxn

inline namespace literals
{
[[nodiscard]] inline value operator"" _jaxn( const char* data, const std::size_t size )
[[nodiscard]] inline value operator""_jaxn( const char* data, const std::size_t size )
{
return jaxn::from_string( data, size, "literal" );
}
Expand Down
2 changes: 1 addition & 1 deletion include/tao/json/pointer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ namespace tao::json

inline namespace literals
{
[[nodiscard]] inline pointer operator"" _json_pointer( const char* data, const std::size_t size )
[[nodiscard]] inline pointer operator""_json_pointer( const char* data, const std::size_t size )
{
return pointer( { data, size } );
}
Expand Down
Loading