From 222837976c656e4a87ea3a5219d4f860b61315a8 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Wed, 13 Feb 2019 21:56:47 +0200 Subject: [PATCH] [Server] Fix type name warning for Player The warning in Visual Studio was: "'Player': type name first seen using 'class' now seen using 'struct'" --- apps/openmw-mp/Player.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/openmw-mp/Player.hpp b/apps/openmw-mp/Player.hpp index a59319f3b..abc205dcb 100644 --- a/apps/openmw-mp/Player.hpp +++ b/apps/openmw-mp/Player.hpp @@ -21,7 +21,6 @@ #include "Cell.hpp" #include "CellController.hpp" -struct Player; typedef std::map TPlayers; typedef std::map TSlots;