From af05990bc9092955e922f94f24e8535edf63e673 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 30 May 2020 14:05:04 +0200 Subject: [PATCH] Fix libtorrent include to a more precise header torrentcreatorthread.cpp does not need to include libtorrent/storage.hpp, but just needs libtorrent/file_storage.hpp. The former header is for implementing a custom storage. Change include to libtorrent/file_storage.hpp --- src/base/bittorrent/torrentcreatorthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/bittorrent/torrentcreatorthread.cpp b/src/base/bittorrent/torrentcreatorthread.cpp index ba84afa2d..2c5c95bd6 100644 --- a/src/base/bittorrent/torrentcreatorthread.cpp +++ b/src/base/bittorrent/torrentcreatorthread.cpp @@ -32,7 +32,7 @@ #include #include -#include +#include #include #include