change inclusion order (workaround for compilation errors on windows)

This commit is contained in:
Anonymissimus 2012-02-04 02:59:11 +00:00
parent d9a3b6b3f5
commit 130fc99c3a
2 changed files with 3 additions and 3 deletions

View file

@ -14,8 +14,6 @@
See the COPYING file for more details.
*/
#include "addon/client.hpp"
#include "addon/manager.hpp"
#include "addon/validation.hpp"
#include "display.hpp"
@ -25,6 +23,8 @@
#include "log.hpp"
#include "serialization/string_utils.hpp"
#include "addon/client.hpp"
static lg::log_domain log_addons_client("addons-client");
#define ERR_ADDONS LOG_STREAM(err , log_addons_client)
#define WRN_ADDONS LOG_STREAM(warn, log_addons_client)

View file

@ -17,7 +17,6 @@
#include "global.hpp"
#include "addon/manager.hpp"
#include "addon/client.hpp"
#include "dialogs.hpp"
#include "filesystem.hpp"
#include "foreach.hpp"
@ -41,6 +40,7 @@
#include "version.hpp"
#include "wml_separators.hpp"
#include "formula_string_utils.hpp"
#include "addon/client.hpp"
static lg::log_domain log_config("config");
#define ERR_CFG LOG_STREAM(err , log_config)