From d2b66b8bae5dd87d35d679f8560fde80799726e8 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 17 Jan 2009 01:40:06 +0000 Subject: [PATCH] added include guards to allocator.hpp --- include/libtorrent/allocator.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/libtorrent/allocator.hpp b/include/libtorrent/allocator.hpp index af9772547..6ee12d493 100644 --- a/include/libtorrent/allocator.hpp +++ b/include/libtorrent/allocator.hpp @@ -32,6 +32,9 @@ POSSIBILITY OF SUCH DAMAGE. #include +#ifndef TORRENT_ALLOCATOR_HPP_INCLUDED +#define TORRENT_ALLOCATOR_HPP_INCLUDED + namespace libtorrent { @@ -46,3 +49,5 @@ namespace libtorrent } +#endif +