Skip to content

Commit

Permalink
Use full path for all server includes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Aug 10, 2019
1 parent ab5c29c commit 92d0025
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/server/forum_user_handler.hpp
Expand Up @@ -14,7 +14,7 @@

#pragma once

#include "user_handler.hpp"
#include "server/user_handler.hpp"

#include <vector>
#include <memory>
Expand Down
6 changes: 3 additions & 3 deletions src/server/game.hpp
Expand Up @@ -15,9 +15,9 @@
#pragma once

#include "mt_rng.hpp"
#include "player.hpp"
#include "player_connection.hpp"
#include "simple_wml.hpp"
#include "server/player.hpp"
#include "server/player_connection.hpp"
#include "server/simple_wml.hpp"
#include "utils/make_enum.hpp"

#include <boost/ptr_container/ptr_vector.hpp>
Expand Down
2 changes: 1 addition & 1 deletion src/server/player.hpp
Expand Up @@ -14,7 +14,7 @@

#pragma once

#include "simple_wml.hpp"
#include "server/simple_wml.hpp"

#include <ctime>
#include <set>
Expand Down
4 changes: 2 additions & 2 deletions src/server/player_network.hpp
Expand Up @@ -15,8 +15,8 @@

#pragma once

#include "player.hpp"
#include "simple_wml.hpp"
#include "server/player.hpp"
#include "server/simple_wml.hpp"

#include "utils/functional.hpp"
#include "log.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/server/sample_user_handler.hpp
Expand Up @@ -14,7 +14,7 @@

#pragma once

#include "user_handler.hpp"
#include "server/user_handler.hpp"

#include <map>
#include <vector>
Expand Down
4 changes: 2 additions & 2 deletions src/server/send_receive_wml_helpers.ipp
Expand Up @@ -27,8 +27,8 @@
#include <windows.h>
#endif

#include "server_base.hpp"
#include "simple_wml.hpp"
#include "server/server_base.hpp"
#include "server/simple_wml.hpp"
#include "filesystem.hpp"
#include "serialization/unicode_cast.hpp" //only used in windows specific code.

Expand Down

0 comments on commit 92d0025

Please sign in to comment.