Use `absl::string_view` consistently

PiperOrigin-RevId: 600363060
Change-Id: I14e4b78c90d1f66e6b429436b09fad9dcd0f2cfc
pull/171/head
Wiktor Garbacz 2024-01-21 23:42:05 -08:00 committed by Copybara-Service
parent 25cfb5ef03
commit fa5360351b
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class SyscallTable {
absl::StatusOr<Entry> GetEntry(int syscall) const;
// Returns the first entry matching the provided name.
absl::StatusOr<Entry> GetEntry(std::string_view name) const;
absl::StatusOr<Entry> GetEntry(absl::string_view name) const;
absl::Span<const Entry> GetEntries() const { return data_; }