Skip to content

Commit 0ffb4ab

Browse files
committed
respect naming schema
1 parent 621d0be commit 0ffb4ab

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

source/gameanalytics/GAHTTPApi.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@
1414
#include "Http/GAHttpCurl.h"
1515
namespace gameanalytics
1616
{
17-
using GAHttpDefaultClient = GAHttpClientCurl;
17+
using GAHttpClientDefault = GAHttpClientCurl;
1818
}
1919
#else
2020
#include "Http/GAHttpStub.h"
21+
namespace gameanalytics
2122
{
22-
using GAHttpDefaultClient = GAHttpClientCurl;
23+
using GAHttpClientDefault = GAHttpClientStub;
2324
}
2425
#endif
2526

@@ -73,7 +74,7 @@ namespace gameanalytics
7374
if(!impl)
7475
{
7576
logging::GALogger::d("Using default http client");
76-
impl = std::make_unique<GAHttpDefaultClient>();
77+
impl = std::make_unique<GAHttpClientDefault>();
7778
}
7879

7980
impl->initialize();

0 commit comments

Comments
 (0)