File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ namespace tao::json
91
91
inline namespace literals
92
92
{
93
93
template < char ... Cs >
94
- [[nodiscard]] std::vector< std::byte > operator " " _binary()
94
+ [[nodiscard]] std::vector< std::byte > operator " " _binary()
95
95
{
96
96
return internal::unhex< std::vector< std::byte >, Cs... >();
97
97
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace tao::json
29
29
30
30
inline namespace literals
31
31
{
32
- [[nodiscard]] inline value operator " " _json( const char * data, const std::size_t size )
32
+ [[nodiscard]] inline value operator " " _json( const char * data, const std::size_t size )
33
33
{
34
34
return json::from_string ( data, size, " literal" );
35
35
}
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ namespace tao::json::jaxn
30
30
31
31
inline namespace literals
32
32
{
33
- [[nodiscard]] inline value operator " " _jaxn( const char * data, const std::size_t size )
33
+ [[nodiscard]] inline value operator " " _jaxn( const char * data, const std::size_t size )
34
34
{
35
35
return jaxn::from_string ( data, size, " literal" );
36
36
}
Original file line number Diff line number Diff line change @@ -425,7 +425,7 @@ namespace tao::json
425
425
426
426
inline namespace literals
427
427
{
428
- [[nodiscard]] inline pointer operator " " _json_pointer( const char * data, const std::size_t size )
428
+ [[nodiscard]] inline pointer operator " " _json_pointer( const char * data, const std::size_t size )
429
429
{
430
430
return pointer ( { data, size } );
431
431
}
You can’t perform that action at this time.
0 commit comments