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

@ -106,7 +106,8 @@ BpfObject::_get_or_create_program(struct bpf_program *prog) {
}
// Create and cache
auto bpf_prog = std::make_shared<BpfProgram>(shared_from_this(), prog, prog_name);
auto bpf_prog =
std::make_shared<BpfProgram>(shared_from_this(), prog, prog_name);
prog_cache_[prog_name] = bpf_prog;
return bpf_prog;