Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and sagar-apple committed Feb 11, 2022
1 parent 7a529bc commit 7edc0e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/darwin/Framework/CHIP/CHIPCallbackBridgeBase_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ template <class T> class CHIPCallbackBridge {
}

dispatch_async(callbackBridge->mQueue, ^{
ChipLogDetail(Controller, "%s %f seconds", callbackBridge->mCookie.UTF8String, -[callbackBridge->mResponseTime timeIntervalSinceNow]);
ChipLogDetail(Controller, "%s %f seconds", callbackBridge->mCookie.UTF8String,
-[callbackBridge->mResponseTime timeIntervalSinceNow]);
callbackBridge->mHandler(value, error);

if (!callbackBridge->mKeepAlive) {
Expand All @@ -101,6 +102,6 @@ template <class T> class CHIPCallbackBridge {
chip::Callback::Callback<CHIPDefaultFailureCallbackType> mFailure;

// Measure the time it took for the callback to trigger
NSDate *mResponseTime;
NSString *mCookie;
NSDate * mResponseTime;
NSString * mCookie;
};

0 comments on commit 7edc0e2

Please sign in to comment.