Skip to content

Commit

Permalink
Fix pointer declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
mwswartwout committed Apr 4, 2024
1 parent d73e6e1 commit d5282f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/server/Server.h
Original file line number Diff line number Diff line change
@@ -388,7 +388,7 @@ class Server

static Server & GetInstance()
{
static Server sServer = new Server();
static Server* sServer = new Server();
return *sServer;
}

0 comments on commit d5282f6

Please sign in to comment.