diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 18:37:47 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 18:37:47 +0200 |
commit | 90b1354688e988ba1311a5645f631d353fa7ff80 (patch) | |
tree | 5619e16c34d3f2f9142c270e2a906614a6d598a6 /Kernel/File.cpp | |
parent | 77b9fa89dd36fcd56d956667a956ef7f2ee8f963 (diff) | |
download | serenity-90b1354688e988ba1311a5645f631d353fa7ff80.zip |
AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.
Diffstat (limited to 'Kernel/File.cpp')
-rw-r--r-- | Kernel/File.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/File.cpp b/Kernel/File.cpp index b366c523b1..693b21ee74 100644 --- a/Kernel/File.cpp +++ b/Kernel/File.cpp @@ -9,7 +9,7 @@ File::~File() { } -KResultOr<Retained<FileDescription>> File::open(int options) +KResultOr<NonnullRefPtr<FileDescription>> File::open(int options) { UNUSED_PARAM(options); return FileDescription::create(this); |