added include guards to allocator.hpp
This commit is contained in:
parent
78d3654263
commit
d2b66b8bae
|
@ -32,6 +32,9 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
|
||||||
|
#ifndef TORRENT_ALLOCATOR_HPP_INCLUDED
|
||||||
|
#define TORRENT_ALLOCATOR_HPP_INCLUDED
|
||||||
|
|
||||||
namespace libtorrent
|
namespace libtorrent
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -46,3 +49,5 @@ namespace libtorrent
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue