summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/ErrorConstructor.cpp
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2020-05-04 13:30:40 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-05 09:15:16 +0200
commit8bd9f7e50eeae3e1103eb98941bc41bb852ab7a2 (patch)
treebf10324a7a00ae29b900ddd4f3e17f33f2c77472 /Libraries/LibJS/Runtime/ErrorConstructor.cpp
parent30519c22f6ca7ec902514c30f8d38457745a9d6b (diff)
downloadserenity-8bd9f7e50eeae3e1103eb98941bc41bb852ab7a2.zip
LibJS: run clang-format on all the files
Diffstat (limited to 'Libraries/LibJS/Runtime/ErrorConstructor.cpp')
-rw-r--r--Libraries/LibJS/Runtime/ErrorConstructor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/ErrorConstructor.cpp b/Libraries/LibJS/Runtime/ErrorConstructor.cpp
index 8a5a3e9d44..3904a90747 100644
--- a/Libraries/LibJS/Runtime/ErrorConstructor.cpp
+++ b/Libraries/LibJS/Runtime/ErrorConstructor.cpp
@@ -62,7 +62,7 @@ Value ErrorConstructor::construct(Interpreter& interpreter)
put("prototype", interpreter().global_object().snake_name##_prototype(), 0); \
put("length", Value(1), Attribute::Configurable); \
} \
- ConstructorName::~ConstructorName() {} \
+ ConstructorName::~ConstructorName() { } \
Value ConstructorName::call(Interpreter& interpreter) \
{ \
return construct(interpreter); \