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)
|
cmake_minimum_required (VERSION 3.6)
|
||||||
project (mastorss
|
project (mastorss
|
||||||
VERSION 0.8.3
|
VERSION 0.8.4
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ int main(int argc, char *argv[])
|
||||||
string access_token = "";
|
string access_token = "";
|
||||||
string feedurl = "";
|
string feedurl = "";
|
||||||
profile = argv[1];
|
profile = argv[1];
|
||||||
std::uint16_t ret;
|
std::uint_fast16_t ret;
|
||||||
string answer;
|
string answer;
|
||||||
std::vector<Mastodon::Easy::Status> entries;
|
std::vector<Mastodon::Easy::Status> entries;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user