From 6d1a96043c63f346b03df4c54d8200bc320ebe3e Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Fri, 27 Jul 2018 18:43:11 +0900 Subject: Fix 'default argument missing' --- include/tgbot/Api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/tgbot/Api.h') diff --git a/include/tgbot/Api.h b/include/tgbot/Api.h index 0966b29..84a6c9b 100644 --- a/include/tgbot/Api.h +++ b/include/tgbot/Api.h @@ -312,7 +312,7 @@ public: * @param disableNotification Optional. Sends the message silenty. * @return On success, the sent Message is returned. */ - Message::Ptr sendAnimation(int64_t chatId, const boost::variant animation, int32_t duration = 0, int32_t width = 0, int32_t height = 0, const boost::variant thumb, const std::string &caption = "", + Message::Ptr sendAnimation(int64_t chatId, const boost::variant animation, int32_t duration = 0, int32_t width = 0, int32_t height = 0, const boost::variant thumb = "", const std::string &caption = "", int32_t replyToMessageId = 0, GenericReply::Ptr replyMarkup = std::make_shared(), const std::string& parseMode = "", bool disableNotification = false) const; /** * @brief Use this method to send video messages. On success, the sent Message is returned. -- cgit v1.2.3