trunk/branch integration: default namespace

This commit is contained in:
Marian Krivos 2011-08-22 17:35:24 +00:00
parent 70280b88a6
commit 2dc5bf5a8c

View File

@ -211,9 +211,14 @@ Notification::Ptr NotificationQueue::dequeueOne()
}
NotificationQueue& NotificationQueue::defaultQueue()
namespace
{
static SingletonHolder<NotificationQueue> sh;
}
NotificationQueue& NotificationQueue::defaultQueue()
{
return *sh.get();
}