diff --git a/src/api/SapphireAPI.cpp b/src/api/SapphireAPI.cpp index 45f39a76..f07c7ce5 100644 --- a/src/api/SapphireAPI.cpp +++ b/src/api/SapphireAPI.cpp @@ -10,9 +10,6 @@ #include -Sapphire::Network::SapphireAPI::SapphireAPI() = default; -Sapphire::Network::SapphireAPI::~SapphireAPI() = default; - bool Sapphire::Network::SapphireAPI::login( const std::string& username, const std::string& pass, std::string& sId ) { std::string query = diff --git a/src/api/SapphireAPI.h b/src/api/SapphireAPI.h index 33014d28..7b2bbd4c 100644 --- a/src/api/SapphireAPI.h +++ b/src/api/SapphireAPI.h @@ -18,9 +18,8 @@ namespace Sapphire::Network class SapphireAPI { public: - SapphireAPI(); - - ~SapphireAPI(); + SapphireAPI() = default; + ~SapphireAPI() = default; using SessionMap = std::map< std::string, std::shared_ptr< Session > >;