Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build with -pedantic, fix problems #3892

Merged
merged 9 commits into from
Feb 16, 2023
Prev Previous commit
Next Next commit
Remove extraneous semicolon in tools
  • Loading branch information
vlstill committed Feb 16, 2023
commit 0f9981d81672eadfe395dec8e2dac2bfcc1bd02e
2 changes: 1 addition & 1 deletion backends/p4tools/common/compiler/reachability.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ void ReachabilityEngineState::setState(std::list<const DCGVertexType *> ls) { st

const DCGVertexType *ReachabilityEngineState::getPrevNode() { return prevNode; }

void ReachabilityEngineState::setPrevNode(const DCGVertexType *n) { prevNode = n; };
void ReachabilityEngineState::setPrevNode(const DCGVertexType *n) { prevNode = n; }

bool ReachabilityEngineState::isEmpty() { return state.empty(); }

Expand Down