mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
AK: Fixed a typo in NeverDestroyed.h (#1228)
This commit is contained in:
parent
7a8be7f777
commit
fa21c7e8bf
Notes:
sideshowbarker
2024-07-19 09:16:53 +09:00
Author: https://github.com/kaifsm 🔰 Commit: https://github.com/SerenityOS/serenity/commit/fa21c7e8bf2 Pull-request: https://github.com/SerenityOS/serenity/pull/1228
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ public:
|
|||
const T* operator->() const { return &get(); }
|
||||
|
||||
T& operator*() { return get(); }
|
||||
const T* operator*() const { return get(); }
|
||||
const T& operator*() const { return get(); }
|
||||
|
||||
T& get() { return reinterpret_cast<T&>(storage); }
|
||||
const T& get() const { return reinterpret_cast<T&>(storage); }
|
||||
|
|
Loading…
Reference in a new issue