Compare commits

...
This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.

1 Commits

Author SHA1 Message Date
tastytea a25f088bec
Changed default values for strings from 0 to "".
the build was successful Details
2019-03-02 12:57:51 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.6)
project (mastodon-cpp
VERSION 0.30.1
VERSION 0.30.2
LANGUAGES CXX
)

View File

@ -309,7 +309,7 @@ public:
*/
const vector<Notification> get_notifications(
uint_fast16_t &error, const uint_fast16_t limit = 20,
const string since_id = 0, const string max_id = 0);
const string since_id = "", const string max_id = "");
/*!
* @brief Base class for all entities.