From 8f46cb83c7753d92654c6444ce2a20798d23c509 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 7 Dec 2022 08:06:02 -0500 Subject: [PATCH] LibJS: Put CanonicalIndex in the JS namespace --- Userland/Libraries/LibJS/Runtime/CanonicalIndex.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h b/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h index e9a6eafa13..be65059ba9 100644 --- a/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h +++ b/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h @@ -8,6 +8,8 @@ #include +namespace JS { + class CanonicalIndex { public: enum class Type { @@ -35,3 +37,5 @@ private: Type m_type; u32 m_index; }; + +}