summaryrefslogtreecommitdiff
path: root/src/network/network_content.h
diff options
context:
space:
mode:
authorHenry Wilson <m3henry@googlemail.com>2019-03-04 20:49:33 +0000
committerPeterN <peter@fuzzle.org>2019-03-26 20:15:57 +0000
commitcc62f4163f230ed82ef3b04187987d3e380cd570 (patch)
treec4e271f72ae231d9934f215624054d605665ca6c /src/network/network_content.h
parentc01a2e2a81d8e7bcd47d46292ed0b7d452081c31 (diff)
downloadopenttd-cc62f4163f230ed82ef3b04187987d3e380cd570.tar.xz
Cleanup: Remove unused size template parameters from SmallMap and Auto[Free|Delete]SmallVector
Diffstat (limited to 'src/network/network_content.h')
-rw-r--r--src/network/network_content.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/network_content.h b/src/network/network_content.h
index e62c921e6..29a25f259 100644
--- a/src/network/network_content.h
+++ b/src/network/network_content.h
@@ -67,11 +67,11 @@ struct ContentCallback {
class ClientNetworkContentSocketHandler : public NetworkContentSocketHandler, ContentCallback, HTTPCallback {
protected:
typedef std::vector<ContentID> ContentIDList; ///< List of content IDs to (possibly) select.
- std::vector<ContentCallback *> callbacks; ///< Callbacks to notify "the world"
- ContentIDList requested; ///< ContentIDs we already requested (so we don't do it again)
- ContentVector infos; ///< All content info we received
- std::vector<char> http_response; ///< The HTTP response to the requests we've been doing
- int http_response_index; ///< Where we are, in the response, with handling it
+ std::vector<ContentCallback *> callbacks; ///< Callbacks to notify "the world"
+ ContentIDList requested; ///< ContentIDs we already requested (so we don't do it again)
+ ContentVector infos; ///< All content info we received
+ std::vector<char> http_response; ///< The HTTP response to the requests we've been doing
+ int http_response_index; ///< Where we are, in the response, with handling it
FILE *curFile; ///< Currently downloaded file
ContentInfo *curInfo; ///< Information about the currently downloaded file