summaryrefslogtreecommitdiff
path: root/src/Bot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Bot.cpp')
-rw-r--r--src/Bot.cpp4
1 files changed, 3 insertions, 1 deletions
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<EventBroadcaster>())
+ // uncomment when c++14 is available
+ //, _eventBroadcaster(std::make_unique<EventBroadcaster>())
+ , _eventBroadcaster(new EventBroadcaster())
, _eventHandler(getEvents()) {
}