Skip to content

Commit

Permalink
move include from a header to its compilation unit
Browse files Browse the repository at this point in the history
This include is apparently unnecessary but we don't compile without
it... it seems to only affect this compilation unit though.
  • Loading branch information
cbeck88 committed Jun 25, 2014
1 parent b8427b3 commit 2a703f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 3 additions & 0 deletions src/gui/dialogs/game_save.cpp
Expand Up @@ -14,6 +14,9 @@

#define GETTEXT_DOMAIN "wesnoth-lib"

#include <boost/multi_index_container.hpp>
// ^ This is apparently unnecessary but we don't compile without it...

#include "gui/dialogs/game_save.hpp"

#include "gettext.hpp"
Expand Down
5 changes: 0 additions & 5 deletions src/gui/dialogs/game_save.hpp
Expand Up @@ -16,11 +16,6 @@
#define GUI_DIALOGS_SAVE_GAME_HPP_INCLUDED

#include "gui/dialogs/dialog.hpp"
#include "tstring.hpp"

#include <boost/multi_index_container.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/member.hpp>

namespace gui2
{
Expand Down

0 comments on commit 2a703f3

Please sign in to comment.