Skip to content

Commit

Permalink
Fix bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Mar 5, 2024
1 parent c81c3ef commit c91fac9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/tao/config/internal/phase2_replace.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ namespace tao::config::internal
case entry_kind::value:
continue;
case entry_kind::reference:
continue;
++i;
return;
case entry_kind::array:
process_array_concat_entry( j->get_array(), star );
continue;
Expand All @@ -106,7 +107,8 @@ namespace tao::config::internal
case entry_kind::value:
continue;
case entry_kind::reference:
continue;
++i;
return;
case entry_kind::array:
process_concat_entry_array( star, j->get_array() );
continue;
Expand Down

0 comments on commit c91fac9

Please sign in to comment.