Skip to content

Commit

Permalink
🚨 fixed another linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nlohmann committed Oct 26, 2018
1 parent d97fa30 commit 544150d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/nlohmann/detail/output/serializer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -460,10 +460,10 @@ class serializer

// continue processing the string
state = UTF8_ACCEPT;
continue;
break;
}
}
break; // LCOV_EXCL_LINE
break;
}

default: // decode found yet incomplete multi-byte code point
Expand Down
4 changes: 2 additions & 2 deletions single_include/nlohmann/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11158,10 +11158,10 @@ class serializer

// continue processing the string
state = UTF8_ACCEPT;
continue;
break;
}
}
break; // LCOV_EXCL_LINE
break;
}

default: // decode found yet incomplete multi-byte code point
Expand Down

0 comments on commit 544150d

Please sign in to comment.