From b780dfdf19b86b500295d43c19f8f8cf914b61b5 Mon Sep 17 00:00:00 2001 From: Egor Pugin Date: Sat, 14 Mar 2020 18:09:00 +0300 Subject: Init unique_ptr in C++11 style. --- src/Bot.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Bot.cpp') diff --git a/src/Bot.cpp b/src/Bot.cpp index b1e1ea5..8e6d667 100644 --- a/src/Bot.cpp +++ b/src/Bot.cpp @@ -7,7 +7,9 @@ namespace TgBot { Bot::Bot(std::string token, const HttpClient& httpClient) : _token(std::move(token)) , _api(_token, httpClient) - , _eventBroadcaster(std::make_unique()) + // uncomment when c++14 is available + //, _eventBroadcaster(std::make_unique()) + , _eventBroadcaster(new EventBroadcaster()) , _eventHandler(getEvents()) { } -- cgit v1.2.3