mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-30 18:16:31 +03:00
Refactoring WIP.
Changing the function naming convention from CamelCase to camelCase. --HG-- branch : dev
This commit is contained in:
@@ -28,7 +28,7 @@ EE_MAIN_FUNC int main (int argc, char * argv []) {
|
||||
request.SetUri("/wiki/Main_Page");
|
||||
|
||||
// Creates an async http request
|
||||
Http::Request asyncRequest( "/wiki/" + Version::GetCodename() );
|
||||
Http::Request asyncRequest( "/wiki/" + Version::getCodename() );
|
||||
|
||||
http.SendAsyncRequest( cb::Make3( AsyncRequestCallback ), asyncRequest, Seconds( 5 ) );
|
||||
} else {
|
||||
@@ -55,7 +55,7 @@ EE_MAIN_FUNC int main (int argc, char * argv []) {
|
||||
}
|
||||
}
|
||||
|
||||
MemoryManager::ShowResults();
|
||||
MemoryManager::showResults();
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user