Make curlwrapper_instances static.

This commit is contained in:
tastytea 2020-01-05 20:26:47 +01:00
parent b93fe57cae
commit 3c6c56d973
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 1 additions and 3 deletions

View File

@ -30,8 +30,6 @@ namespace mastodonpp
using std::string;
using std::string_view;
extern uint16_t curl_inits;
/*!
* @brief The HTTP method.
*

View File

@ -26,7 +26,7 @@ namespace mastodonpp
using std::uint8_t;
using std::uint16_t;
uint16_t curlwrapper_instances{0};
static uint16_t curlwrapper_instances{0};
CURLWrapper::CURLWrapper()
: _curl_buffer_error{}