mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:47:35 +00:00
LibJS: Add missing whitespace around namespace curly braces
This commit is contained in:
parent
f5fc921d84
commit
ee1379520a
7 changed files with 8 additions and 0 deletions
|
@ -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 };
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue