We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a663dab commit 070926fCopy full SHA for 070926f
1 file changed
src/json_to_cpp.cpp
@@ -355,7 +355,7 @@ namespace daw::json_to_cpp {
355
}
356
if( !definition ) {
357
using daw::json::json_value_t;
358
- config.cpp_file( ) << "inline auto describe_json_class( "
+ config.cpp_file( ) << "auto describe_json_class( "
359
<< cur_obj.object_name
360
<< " ) {\n\tusing namespace daw::json;\n";
361
for( auto const &child : *cur_obj.children ) {
@@ -402,7 +402,7 @@ namespace daw::json_to_cpp {
402
403
config.cpp_file( ) << ">{};\n}\n\n";
404
405
- config.cpp_file( ) << " inline auto to_json_data( "
+ config.cpp_file( ) << "auto to_json_data( "
406
<< cur_obj.object_name << " const & value ) {\n";
407
config.cpp_file( ) << "\treturn std::forward_as_tuple( ";
408
is_first = true;
0 commit comments