Skip to content

Commit 525d2d2

Browse files
committed
Format fixes
1 parent 1e8d3be commit 525d2d2

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

analytics/src/analytics_desktop.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ void ResetAnalyticsData() {
386386
}
387387

388388
// Notify the Analytics SDK about the current state of the app's lifecycle.
389-
void NotifyAppLifecycleChange(AppLifecycleState state) {
389+
void NotifyAppLifecycleChange(AppLifecycleState state) {
390390
FIREBASE_ASSERT_RETURN_VOID(internal::IsInitialized());
391391
GoogleAnalytics_NotifyAppLifecycleChange(
392392
static_cast<GoogleAnalytics_AppLifecycleState>(state));

analytics/src/analytics_desktop_dynamic.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818

1919
#include <stddef.h>
2020

21-
// A nice big chunk of stub memory that can be returned by stubbed Create methods.
21+
// A nice big chunk of stub memory that can be returned by stubbed Create
22+
// methods.
2223
static char g_stub_memory[256] = {0};
2324

2425
// clang-format off

analytics/src/include/firebase/analytics.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -558,15 +558,11 @@ void SetSessionTimeoutDuration(int64_t milliseconds);
558558
/// instance id.
559559
void ResetAnalyticsData();
560560

561-
562561
/// @brief The state of an app in its lifecycle.
563562
///
564563
/// kUnknown is an invalid sate that is used to capture uninitialized values.
565564
/// kTermination is used to indicate that the app is about to be terminated.
566-
enum AppLifecycleState {
567-
kUnknown = 0,
568-
kTermination
569-
};
565+
enum AppLifecycleState { kUnknown = 0, kTermination };
570566

571567
/// @brief Notifies the current state of the app's lifecycle.
572568
///
@@ -580,7 +576,7 @@ enum AppLifecycleState {
580576
/// before the call returns.
581577
///
582578
/// @param[in] state The current state of the app's lifecycle.
583-
579+
584580
void NotifyAppLifecycleChange(AppLifecycleState state);
585581

586582
/// Get the instance ID from the analytics service.

0 commit comments

Comments
 (0)