diff options
author | Andreas Kling <kling@serenityos.org> | 2023-03-06 17:56:28 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-06 23:46:36 +0100 |
commit | 7369d0ab5f93b3b083e030bef64486b02cafb3d5 (patch) | |
tree | 2b82fc7c6825248d15d0a36c09d2518fe6f8d2cc /Kernel/Graphics | |
parent | 21db2b7b903d8c35151174fb18f947db5227eab7 (diff) | |
download | serenity-7369d0ab5f93b3b083e030bef64486b02cafb3d5.zip |
Kernel: Stop using NonnullLockRefPtrVector
Diffstat (limited to 'Kernel/Graphics')
-rw-r--r-- | Kernel/Graphics/GraphicsManagement.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Kernel/Graphics/GraphicsManagement.h b/Kernel/Graphics/GraphicsManagement.h index ee30adf3ce..c7432f639d 100644 --- a/Kernel/Graphics/GraphicsManagement.h +++ b/Kernel/Graphics/GraphicsManagement.h @@ -19,7 +19,6 @@ #include <Kernel/Graphics/GenericGraphicsAdapter.h> #include <Kernel/Graphics/VirtIOGPU/GraphicsAdapter.h> #include <Kernel/Library/NonnullLockRefPtr.h> -#include <Kernel/Library/NonnullLockRefPtrVector.h> #include <Kernel/Memory/Region.h> namespace Kernel { @@ -54,7 +53,7 @@ private: void initialize_preset_resolution_generic_display_connector(); - NonnullLockRefPtrVector<GenericGraphicsAdapter> m_graphics_devices; + Vector<NonnullLockRefPtr<GenericGraphicsAdapter>> m_graphics_devices; LockRefPtr<Graphics::Console> m_console; // Note: This is only used when booting with kernel commandline that includes "graphics_subsystem_mode=limited" |