diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Console.h')
-rw-r--r-- | Userland/Libraries/LibJS/Console.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Console.h b/Userland/Libraries/LibJS/Console.h index 6394c14e50..1ac8469061 100644 --- a/Userland/Libraries/LibJS/Console.h +++ b/Userland/Libraries/LibJS/Console.h @@ -89,7 +89,7 @@ private: ThrowCompletionOr<String> value_vector_to_string(MarkedVector<Value> const&); ThrowCompletionOr<String> format_time_since(Core::ElapsedTimer timer); - Realm& m_realm; + NonnullGCPtr<Realm> m_realm; ConsoleClient* m_client { nullptr }; HashMap<String, unsigned> m_counters; |