Merge pull request #437 from fran6co:patch-2

pull/452/head
Maksim Shabunin 9 years ago
commit 139cf65e37
  1. 3
      modules/cvv/src/impl/call.cpp

@ -1,4 +1,5 @@
#include "call.hpp"
#include <atomic>
namespace cvv
{
@ -7,7 +8,7 @@ namespace impl
size_t newCallId()
{
thread_local size_t nextId = 1;
static std::atomic_size_t nextId (1);
return nextId++;
}

Loading…
Cancel
Save