Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vlstill committed Nov 23, 2023
1 parent efbcd43 commit a11eb5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontends/p4/frontend.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class FrontEnd {

public:
FrontEnd() = default;
explicit FrontEnd(const ParseAnnotations &parseAnnotations) : parseAnnotations(parseAnnotations) {}
explicit FrontEnd(const ParseAnnotations &parseAnnotations)
: parseAnnotations(parseAnnotations) {}
explicit FrontEnd(const DebugHook &hook) { hooks.push_back(hook); }
explicit FrontEnd(const ParseAnnotations &parseAnnotations, const DebugHook &hook)
: FrontEnd(parseAnnotations) {
Expand Down

0 comments on commit a11eb5f

Please sign in to comment.