aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel/Endpoint.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-03-26 00:20:28 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-03-26 00:20:28 +0000
commit1c9092a8a6db41709b9cb77534f06011868baf01 (patch)
treee08a08db01108e00bfb6215fed1294b3f5f26afb /LUFA/Drivers/USB/LowLevel/Endpoint.h
parent4bb59f9673bdac23109575a1979640c81cbc2058 (diff)
downloadlufa-1c9092a8a6db41709b9cb77534f06011868baf01.tar.gz
lufa-1c9092a8a6db41709b9cb77534f06011868baf01.tar.bz2
lufa-1c9092a8a6db41709b9cb77534f06011868baf01.zip
Fixed USBTask.h not conditionally including HostChapter9.h only when CAN_BE_DEVICE is defined (thanks to Ian Gregg).
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Endpoint.h')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Endpoint.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.h b/LUFA/Drivers/USB/LowLevel/Endpoint.h
index 1b8bade7c..c6aece708 100644
--- a/LUFA/Drivers/USB/LowLevel/Endpoint.h
+++ b/LUFA/Drivers/USB/LowLevel/Endpoint.h
@@ -46,8 +46,9 @@
#include "../HighLevel/USBTask.h"
#if !defined(NO_STREAM_CALLBACKS) || defined(__DOXYGEN__)
- #include "StreamCallbacks.h"
+ #include "StreamCallbacks.h"
#endif
+
/* Enable C linkage for C++ Compilers: */
#if defined(__cplusplus)
extern "C" {