Fixed issue with mastodon-cpp >= 0.18.6 (uint16_t vs. uint_fast16_t)

This commit is contained in:
tastytea 2018-10-08 01:40:53 +02:00
parent 2cf7cac099
commit 8955dedb46
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.6)
project (mastorss
VERSION 0.8.3
VERSION 0.8.4
LANGUAGES CXX
)

View File

@ -58,7 +58,7 @@ int main(int argc, char *argv[])
string access_token = "";
string feedurl = "";
profile = argv[1];
std::uint16_t ret;
std::uint_fast16_t ret;
string answer;
std::vector<Mastodon::Easy::Status> entries;