added include guards to allocator.hpp

This commit is contained in:
Arvid Norberg 2009-01-17 01:40:06 +00:00
parent 78d3654263
commit d2b66b8bae
1 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,9 @@ POSSIBILITY OF SUCH DAMAGE.
#include <cstddef>
#ifndef TORRENT_ALLOCATOR_HPP_INCLUDED
#define TORRENT_ALLOCATOR_HPP_INCLUDED
namespace libtorrent
{
@ -46,3 +49,5 @@ namespace libtorrent
}
#endif