diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | 08f9bc26a6b279d0f09be13d7305ad8b2f094884 (patch) | |
tree | 5091688b83f9ceabc7aeff0daa5c167460832b1f /Libraries/LibJS/Heap | |
parent | ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c (diff) | |
download | serenity-08f9bc26a6b279d0f09be13d7305ad8b2f094884.zip |
Meta+LibHTTP through LibWeb: Make clang-format-10 clean
Diffstat (limited to 'Libraries/LibJS/Heap')
-rw-r--r-- | Libraries/LibJS/Heap/Handle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Heap/Handle.h b/Libraries/LibJS/Heap/Handle.h index a4400fcd16..e2686395fc 100644 --- a/Libraries/LibJS/Heap/Handle.h +++ b/Libraries/LibJS/Heap/Handle.h @@ -55,7 +55,7 @@ private: template<class T> class Handle { public: - Handle() {} + Handle() { } static Handle create(T* cell) { |