From f6b34b7f0b7ef7c82b7bdcaade1908572926879c Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Mon, 17 Dec 2007 22:07:03 +0000 Subject: [PATCH] added missing include guard to disk_io_thread.hpp --- include/libtorrent/disk_io_thread.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/libtorrent/disk_io_thread.hpp b/include/libtorrent/disk_io_thread.hpp index a77522356..3aef6f7b7 100644 --- a/include/libtorrent/disk_io_thread.hpp +++ b/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 +