AK: Use east const in MappedFile
This commit is contained in:
parent
bc75ca4fe5
commit
62af82f494
Notes:
sideshowbarker
2024-07-18 07:19:32 +09:00
Author: https://github.com/timmot Commit: https://github.com/SerenityOS/serenity/commit/62af82f494a Pull-request: https://github.com/SerenityOS/serenity/pull/9229
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
Result<NonnullRefPtr<MappedFile>, OSError> MappedFile::map(const String& path)
|
||||
Result<NonnullRefPtr<MappedFile>, OSError> MappedFile::map(String const& path)
|
||||
{
|
||||
int fd = open(path.characters(), O_RDONLY | O_CLOEXEC, 0);
|
||||
if (fd < 0)
|
||||
|
|
|
@ -19,7 +19,7 @@ class MappedFile : public RefCounted<MappedFile> {
|
|||
AK_MAKE_NONMOVABLE(MappedFile);
|
||||
|
||||
public:
|
||||
static Result<NonnullRefPtr<MappedFile>, OSError> map(const String& path);
|
||||
static Result<NonnullRefPtr<MappedFile>, OSError> map(String const& path);
|
||||
static Result<NonnullRefPtr<MappedFile>, OSError> map_from_fd_and_close(int fd, String const& path);
|
||||
~MappedFile();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue