Config.h needs to be included in CommonPaths.h because CommonPaths.h is included in Common.h before Config.h is. If you want to find an alternate way to fix this so that Config.h is only included in Common.h watch for circular inclusions next time.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5801 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2010-06-26 14:54:43 +00:00
parent 79992ca7e0
commit 8bfb17bba1
1 changed files with 3 additions and 1 deletions

View File

@ -18,7 +18,9 @@
#ifndef _COMMON_PATHS_H_
#define _COMMON_PATHS_H_
#include "Common.h"
#ifdef __linux__
#include "Config.h"
#endif
// Library suffix/prefix
#ifdef _WIN32