Serenity Operating System
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

AK: Fixed a typo in NeverDestroyed.h (#1228)

authored by

Kaif Mavani and committed by
GitHub
fa21c7e8 7a8be7f7

+1 -1
+1 -1
AK/NeverDestroyed.h
··· 48 48 const T* operator->() const { return &get(); } 49 49 50 50 T& operator*() { return get(); } 51 - const T* operator*() const { return get(); } 51 + const T& operator*() const { return get(); } 52 52 53 53 T& get() { return reinterpret_cast<T&>(storage); } 54 54 const T& get() const { return reinterpret_cast<T&>(storage); }