Skip to content

Commit

Permalink
Remove extra semi colon from infrasec/authorization/audit/AclAuditor.cpp
Browse files Browse the repository at this point in the history
Summary:
`-Wextra-semi` or `-Wextra-semi-stmt`

If the code compiles, this is safe to land.

Reviewed By: palmje

Differential Revision: D51995065

fbshipit-source-id: 9b55a0d8abd0927b76376cb7751bf0fcab10518c
  • Loading branch information
r-barnes authored and facebook-github-bot committed Dec 9, 2023
1 parent 44fd914 commit 4f04f96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion util/autovector.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class autovector {
using iterator_category = std::random_access_iterator_tag;

iterator_impl(TAutoVector* vect, size_t index)
: vect_(vect), index_(index){};
: vect_(vect), index_(index){}
iterator_impl(const iterator_impl&) = default;
~iterator_impl() {}
iterator_impl& operator=(const iterator_impl&) = default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void partitioned_counters_destroy(void);
// Effect: Destroy any partitioned counters data structures.

#if defined(__cplusplus)
};
}
#endif

#if 0
Expand Down

0 comments on commit 4f04f96

Please sign in to comment.