Skip to content

Commit e5d554c

Browse files
author
openkraken-bot
committed
Committing clang-format changes
1 parent 5b70fff commit e5d554c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bridge/bindings/qjs/bom/window_test.cc

+1-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,7 @@ window.postMessage({
7979
EXPECT_EQ(logCalled, true);
8080
}
8181
// Use block scope to release previous page, and allocate new page.
82-
{
83-
TEST_init();
84-
}
82+
{ TEST_init(); }
8583
}
8684

8785
TEST(Window, location) {

bridge/bindings/qjs/dom/event.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class EventInstance : public Instance {
150150
#endif
151151
};
152152
void setType(NativeString* type) const;
153-
FORCE_INLINE EventTargetInstance* target() {return reinterpret_cast<EventTargetInstance*>(nativeEvent->target);}
153+
FORCE_INLINE EventTargetInstance* target() { return reinterpret_cast<EventTargetInstance*>(nativeEvent->target); }
154154
void setTarget(EventTargetInstance* target) const;
155155
FORCE_INLINE EventTargetInstance* currentTarget() { return reinterpret_cast<EventTargetInstance*>(nativeEvent->currentTarget); }
156156
void setCurrentTarget(EventTargetInstance* target) const;

0 commit comments

Comments
 (0)