@@ -245,8 +245,8 @@ namespace daw::json_to_cpp {
245245 std::vector<types::ti_object> &obj_info,
246246 state_t &obj_state, config_t const &config ) {
247247
248- using :: daw::json::json_value_t ;
249- using namespace :: daw::json_to_cpp::types;
248+ using daw::json::json_value_t ;
249+ using namespace daw ::json_to_cpp::types;
250250 if ( current_item.is_integer ( ) ) {
251251 obj_state.has_integrals = true ;
252252 return ti_integral ( );
@@ -336,7 +336,7 @@ namespace daw::json_to_cpp {
336336 parse_json_object ( current_item, config.root_object_name , result,
337337 obj_state, config );
338338 } else {
339- auto root_obj_member = :: daw::json::make_object_value_item (
339+ auto root_obj_member = daw::json::make_object_value_item (
340340 config.root_object_name .c_str ( ), current_item );
341341 auto root_object = json_object_value ( );
342342 root_object.members_v .push_back ( std::move ( root_obj_member ) );
@@ -529,7 +529,7 @@ namespace daw::json_to_cpp {
529529
530530 void generate_cpp ( daw::string_view json_string, config_t &config ) {
531531 auto obj_state = state_t ( );
532- auto json_obj = :: daw::json::parse_json ( json_string );
532+ auto json_obj = daw::json::parse_json ( json_string );
533533 auto obj_info = parse_json_object ( json_obj, obj_state, config );
534534 generate_code ( obj_info, config, obj_state );
535535 }
0 commit comments