Fixed issue with mastodon-cpp >= 0.18.6 (uint16_t vs. uint_fast16_t)
This commit is contained in:
parent
2cf7cac099
commit
8955dedb46
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required (VERSION 3.6)
|
||||
project (mastorss
|
||||
VERSION 0.8.3
|
||||
VERSION 0.8.4
|
||||
LANGUAGES CXX
|
||||
)
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user