File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ namespace gameanalytics
4040 bool enableSDKInitEvent{false };
4141 bool enableHealthEvent{false };
4242
43- private:
43+ void addEventToStore (json& eventData);
4444
4545 static constexpr const char * CategorySessionStart = " user" ;
4646 static constexpr const char * CategorySessionEnd = " session_end" ;
@@ -51,8 +51,10 @@ namespace gameanalytics
5151 static constexpr const char * CategoryError = " error" ;
5252 static constexpr const char * CategorySDKInit = " sdk_init" ;
5353 static constexpr const char * CategoryHealth = " health" ;
54- static constexpr int MaxEventCount = 500 ;
5554
55+ private:
56+
57+ static constexpr int MaxEventCount = 500 ;
5658 static constexpr std::chrono::milliseconds PROCESS_EVENTS_INTERVAL{8000 };
5759
5860 GAEvents ();
@@ -63,7 +65,6 @@ namespace gameanalytics
6365 void processEventQueue ();
6466 void cleanupEvents ();
6567 void fixMissingSessionEndEvents ();
66- void addEventToStore (json& eventData);
6768 void addDimensionsToEvent (json& eventData);
6869 void addCustomFieldsToEvent (json& eventData, json& fields);
6970 void updateSessionTime ();
You can’t perform that action at this time.
0 commit comments