CLOUD: Fix ConnectionManager singleton warning

This commit is contained in:
Alexander Tkachev 2016-05-27 22:15:43 +06:00
parent bc77383545
commit 1dfa73b8f8

View file

@ -28,10 +28,13 @@
#include "common/system.h"
#include "common/timer.h"
#include <curl/curl.h>
using Common::Singleton;
namespace Common {
DECLARE_SINGLETON(Networking::ConnectionManager);
}
namespace Networking {
ConnectionManager::ConnectionManager(): _multi(0), _timerStarted(false) {