Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
openkraken-bot committed Feb 25, 2022
1 parent 5b70fff commit e5d554c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions bridge/bindings/qjs/bom/window_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,7 @@ window.postMessage({
EXPECT_EQ(logCalled, true);
}
// Use block scope to release previous page, and allocate new page.
{
TEST_init();
}
{ TEST_init(); }
}

TEST(Window, location) {
Expand Down
2 changes: 1 addition & 1 deletion bridge/bindings/qjs/dom/event.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class EventInstance : public Instance {
#endif
};
void setType(NativeString* type) const;
FORCE_INLINE EventTargetInstance* target() {return reinterpret_cast<EventTargetInstance*>(nativeEvent->target);}
FORCE_INLINE EventTargetInstance* target() { return reinterpret_cast<EventTargetInstance*>(nativeEvent->target); }
void setTarget(EventTargetInstance* target) const;
FORCE_INLINE EventTargetInstance* currentTarget() { return reinterpret_cast<EventTargetInstance*>(nativeEvent->currentTarget); }
void setCurrentTarget(EventTargetInstance* target) const;
Expand Down

0 comments on commit e5d554c

Please sign in to comment.