From 3ea1b0d304a78ec78113fc1a17fe82fe8590bd8a Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 6 Sep 2009 23:56:07 +0000 Subject: [PATCH] alloca build fixes --- include/libtorrent/alloca.hpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/libtorrent/alloca.hpp b/include/libtorrent/alloca.hpp index 8c06e7152..eb5eedb80 100644 --- a/include/libtorrent/alloca.hpp +++ b/include/libtorrent/alloca.hpp @@ -41,11 +41,7 @@ POSSIBILITY OF SUCH DAMAGE. #else -#if defined (_LINUX_) || defined (_CYGWIN_) -#include -#elif defined (_FREEBSD_) #include -#endif #define TORRENT_ALLOCA(t, n) static_cast(alloca(sizeof(t) * (n)))