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
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove extraneous semicolons
  • Loading branch information
vlstill committed Feb 16, 2023
commit 37583de543cc330239486b2e92a326e53edba922
2 changes: 1 addition & 1 deletion backends/bmv2/common/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ class BMV2Options : public CompilerOptions {

using BMV2Context = P4CContextWithOptions<BMV2Options>;

}; // namespace BMV2
} // namespace BMV2

#endif /* BACKENDS_BMV2_COMMON_OPTIONS_H_ */
2 changes: 1 addition & 1 deletion backends/bmv2/psa_switch/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ class PsaSwitchOptions : public BMV2Options {

using PsaSwitchContext = P4CContextWithOptions<PsaSwitchOptions>;

}; // namespace BMV2
} // namespace BMV2

#endif /* BACKENDS_BMV2_PSA_SWITCH_OPTIONS_H_ */
2 changes: 1 addition & 1 deletion backends/bmv2/simple_switch/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ class SimpleSwitchOptions : public BMV2Options {

using SimpleSwitchContext = P4CContextWithOptions<SimpleSwitchOptions>;

}; // namespace BMV2
} // namespace BMV2

#endif /* BACKENDS_BMV2_SIMPLE_SWITCH_OPTIONS_H_ */
2 changes: 1 addition & 1 deletion backends/dpdk/dpdkArch.h
Original file line number Diff line number Diff line change
Expand Up @@ -1420,5 +1420,5 @@ struct DpdkHandleIPSec : public PassManager {
}
};

}; // namespace DPDK
} // namespace DPDK
#endif /* BACKENDS_DPDK_DPDKARCH_H_ */
2 changes: 1 addition & 1 deletion backends/dpdk/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ const char *DpdkOptions::getIncludePath() {
return path.c_str();
}

}; // namespace DPDK
} // namespace DPDK