We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 621d0be commit 0ffb4abCopy full SHA for 0ffb4ab
1 file changed
source/gameanalytics/GAHTTPApi.cpp
@@ -14,12 +14,13 @@
14
#include "Http/GAHttpCurl.h"
15
namespace gameanalytics
16
{
17
- using GAHttpDefaultClient = GAHttpClientCurl;
+ using GAHttpClientDefault = GAHttpClientCurl;
18
}
19
#else
20
#include "Http/GAHttpStub.h"
21
+ namespace gameanalytics
22
23
+ using GAHttpClientDefault = GAHttpClientStub;
24
25
#endif
26
@@ -73,7 +74,7 @@ namespace gameanalytics
73
74
if(!impl)
75
76
logging::GALogger::d("Using default http client");
- impl = std::make_unique<GAHttpDefaultClient>();
77
+ impl = std::make_unique<GAHttpClientDefault>();
78
79
80
impl->initialize();
0 commit comments