Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Gavin HallidayGavin HallidayReporter
Gavin HallidayGavin HallidayPriority
TrivialFix versions
Pull Request URL
Details
Details
Components
Assignee
Gavin Halliday
Gavin HallidayReporter
Gavin Halliday
Gavin HallidayPriority
Fix versions
Pull Request URL
Created April 25, 2016 at 3:21 PM
Updated May 6, 2016 at 12:47 PM
Resolved May 6, 2016 at 12:47 PM
With new c++ compilers, code like this:
void f()
{
static CriticalSection cs;
CriticalLock lock(cs);
}
has a dynamic (thread safe) check to ensure that cd is only created the first time the function is called. In most situations it would be better to declare the static outside the function.