From 9251a822592c2b4de5d31a2bd36360c13c77eec8 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 17 Dec 2007 23:55:31 +0000 Subject: [PATCH] lt fix - added missing include guard to disk_io_thread.hpp --- libtorrent/include/libtorrent/disk_io_thread.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libtorrent/include/libtorrent/disk_io_thread.hpp b/libtorrent/include/libtorrent/disk_io_thread.hpp index a77522356..3aef6f7b7 100644 --- a/libtorrent/include/libtorrent/disk_io_thread.hpp +++ b/libtorrent/include/libtorrent/disk_io_thread.hpp @@ -30,6 +30,9 @@ POSSIBILITY OF SUCH DAMAGE. */ +#ifndef TORRENT_DISK_IO_THREAD +#define TORRENT_DISK_IO_THREAD + #ifdef TORRENT_DISK_STATS #include #endif @@ -152,3 +155,5 @@ namespace libtorrent } +#endif +