Skip to content

Commit

Permalink
cleanup: spurious semicolons (googleapis#14511)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbolduc authored and cuiy0006 committed Jul 22, 2024
1 parent 2dbc7f2 commit 5370e64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generator/internal/http_option_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ struct RestPathVisitor {
explicit RestPathVisitor(std::string api_version,
std::vector<HttpExtensionInfo::RestPathPiece>& path)
: api_version(std::move(api_version)), path(path) {}
void operator()(PathTemplate::Match const&) { ; }
void operator()(PathTemplate::MatchRecursive const&) { ; }
void operator()(PathTemplate::Match const&) {}
void operator()(PathTemplate::MatchRecursive const&) {}
void operator()(std::string const& s) {
path.emplace_back(
[piece = s, api = api_version](
Expand Down

0 comments on commit 5370e64

Please sign in to comment.