Make code not have a -Warray-parameter warning.

PiperOrigin-RevId: 467842322
Change-Id: Ic262a3f98fa823ef524ac02d08b2f5b8f4adf71d
This commit is contained in:
Sandboxed API Team 2022-08-15 22:55:16 -07:00 committed by Copybara-Service
parent deb3c8e77b
commit 28504f1817

View File

@ -30,8 +30,9 @@ class SyscallTable {
absl::string_view GetName(int syscall) const;
std::vector<std::string> GetArgumentsDescription(
int syscall, const uint64_t values[syscalls::kMaxArgs], pid_t pid) const;
std::vector<std::string> GetArgumentsDescription(int syscall,
const uint64_t values[],
pid_t pid) const;
private:
constexpr SyscallTable() = default;