diff options
author | Linus Groh <mail@linusgroh.de> | 2022-04-17 22:59:52 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-17 23:00:35 +0200 |
commit | ee1379520a68cb169040a3782d9f54412d89845c (patch) | |
tree | 37c83c085570005f8eda5bf4b5771e61b976c4ce /Userland/Libraries/LibJS/Runtime/BooleanObject.h | |
parent | f5fc921d84a3b41547b5ed3caa08a8fa3b7a1136 (diff) | |
download | serenity-ee1379520a68cb169040a3782d9f54412d89845c.zip |
LibJS: Add missing whitespace around namespace curly braces
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/BooleanObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/BooleanObject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/BooleanObject.h b/Userland/Libraries/LibJS/Runtime/BooleanObject.h index 6b3ef6368b..a1ed7f6752 100644 --- a/Userland/Libraries/LibJS/Runtime/BooleanObject.h +++ b/Userland/Libraries/LibJS/Runtime/BooleanObject.h @@ -9,6 +9,7 @@ #include <LibJS/Runtime/Object.h> namespace JS { + class BooleanObject : public Object { JS_OBJECT(BooleanObject, Object); @@ -23,4 +24,5 @@ public: private: bool m_value { false }; }; + } |