Janitorial clang-format

This commit is contained in:
Pragyansh Chaturvedi
2025-10-19 04:06:54 +05:30
parent fc4d9a51e7
commit 1c956da07f
4 changed files with 7 additions and 9 deletions

View File

@ -6,13 +6,10 @@
class BpfException final : public std::runtime_error {
public:
explicit BpfException(const std::string &message)
: std::runtime_error(message) {
}
explicit BpfException(const std::string &message)
: std::runtime_error(message) {}
explicit BpfException(const char *message)
: std::runtime_error(message) {
}
explicit BpfException(const char *message) : std::runtime_error(message) {}
};
#endif // PYLIBBPF_BPF_EXCEPTION_H