aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-05-29 20:01:04 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-05-29 20:01:04 +0000
commit62854904c2fc0a225149cdce120c34c7c52cd5da (patch)
tree2acea6451518d193ce2eb0e324109f3dce530aa0 /LUFA/Common
parent8b0f9535800a6d738b4eb58cb66a18b07f56463c (diff)
Make sure that LUFAConfig.h is included *after* the common submodules, so that the architecture and other defines are available to the configuration header.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2254 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index 871998dc..54d73868 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -68,16 +68,16 @@
#include <string.h>
#include <stddef.h>
- #if defined(USE_LUFA_CONFIG_HEADER)
- #include "LUFAConfig.h"
- #endif
-
#include "Architectures.h"
#include "BoardTypes.h"
#include "ArchitectureSpecific.h"
#include "CompilerSpecific.h"
#include "Attributes.h"
+ #if defined(USE_LUFA_CONFIG_HEADER)
+ #include "LUFAConfig.h"
+ #endif
+
/* Enable C linkage for C++ Compilers: */
#if defined(__cplusplus)
extern "C" {