From 9a006999833fa22ad550a5b84be68a6fae42d614 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Tue, 8 Sep 2020 13:26:54 +0430 Subject: [PATCH] LibJS: Format IndexedProperties.cpp --- Libraries/LibJS/Runtime/IndexedProperties.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/LibJS/Runtime/IndexedProperties.cpp b/Libraries/LibJS/Runtime/IndexedProperties.cpp index d259992909..19f8b68e5b 100644 --- a/Libraries/LibJS/Runtime/IndexedProperties.cpp +++ b/Libraries/LibJS/Runtime/IndexedProperties.cpp @@ -318,7 +318,7 @@ void IndexedProperties::insert(u32 index, Value value, PropertyAttributes attrib m_storage->insert(index, value, attributes); } -ValueAndAttributes IndexedProperties::take_first(Object *this_object) +ValueAndAttributes IndexedProperties::take_first(Object* this_object) { auto first = m_storage->take_first(); if (first.value.is_accessor()) @@ -326,7 +326,7 @@ ValueAndAttributes IndexedProperties::take_first(Object *this_object) return first; } -ValueAndAttributes IndexedProperties::take_last(Object *this_object) +ValueAndAttributes IndexedProperties::take_last(Object* this_object) { auto last = m_storage->take_last(); if (last.value.is_accessor())