Changed default values for strings from 0 to "".
the build was successful Details

This commit is contained in:
tastytea 2019-03-02 12:48:30 +01:00
parent e41fd98ec1
commit a25f088bec
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 (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.