From 81abade8a4338aad8e6d97825c4f2d9c2e93a6d5 Mon Sep 17 00:00:00 2001 From: Sentry Github Bot Date: Tue, 16 May 2023 06:14:10 +0000 Subject: [PATCH] Format code --- Sources/Sentry/SentryProfiler.mm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Sources/Sentry/SentryProfiler.mm b/Sources/Sentry/SentryProfiler.mm index 73f3eb80ac5..09923cc5c37 100644 --- a/Sources/Sentry/SentryProfiler.mm +++ b/Sources/Sentry/SentryProfiler.mm @@ -697,10 +697,10 @@ - (void)start _state = state; _profiler = std::make_shared( [state](auto &backtrace) { - // in test, we'll overwrite the sample's timestamp to one mocked by SentryCurrentDate - // etal. Doing this in a unified way between tests and production required extensive - // changes to the C++ layer, so we opted for this solution to avoid any potential - // breakages or performance hits there. + // in test, we'll overwrite the sample's timestamp to one mocked by SentryCurrentDate + // etal. Doing this in a unified way between tests and production required extensive + // changes to the C++ layer, so we opted for this solution to avoid any potential + // breakages or performance hits there. # if defined(TEST) || defined(TESTCI) Backtrace backtraceCopy = backtrace; backtraceCopy.absoluteTimestamp = SentryCurrentDate.systemTime;