We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 855d731 commit 7f03bd0Copy full SHA for 7f03bd0
source/gameanalytics/GameAnalytics.cpp
@@ -743,24 +743,6 @@ namespace gameanalytics
743
return state::GAState::getRemoteConfigsValue<std::string>(key, defaultValue);
744
}
745
746
- int64_t GameAnalytics::getRemoteConfigsValueAsInt(std::string const& key, int64_t defaultValue)
747
- {
748
- try
749
750
- std::string s = getRemoteConfigsValueAsString(key);
751
- if(!s.empty())
752
753
- return std::stoll(s);
754
- }
755
756
- catch(std::exception& e)
757
758
- (void)e;
759
760
-
761
- return defaultValue;
762
763
764
std::string GameAnalytics::getRemoteConfigsValueAsJson(std::string const& key)
765
{
766
std::string jsonString = getRemoteConfigsValueAsString(key);
0 commit comments