mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:17:35 +00:00
LibCore: Add const qualifier to exec() argument spans
This commit is contained in:
parent
1668d0da27
commit
f4236e61bf
4 changed files with 4 additions and 4 deletions
|
@ -178,7 +178,7 @@ enum class SearchInPath {
|
|||
ErrorOr<void> exec_command(Vector<StringView>& command, bool preserve_env);
|
||||
#endif
|
||||
|
||||
ErrorOr<void> exec(StringView filename, Span<StringView> arguments, SearchInPath, Optional<Span<StringView>> environment = {});
|
||||
ErrorOr<void> exec(StringView filename, Span<StringView const> arguments, SearchInPath, Optional<Span<StringView const>> environment = {});
|
||||
|
||||
#ifdef AK_OS_SERENITY
|
||||
ErrorOr<void> join_jail(u64 jail_index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue