Move some local statics outside of functions

Description

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.

Conclusion

None

Activity

Show:
Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Components

Assignee

Reporter

Priority

Fix versions

Created April 25, 2016 at 3:21 PM
Updated May 6, 2016 at 12:47 PM
Resolved May 6, 2016 at 12:47 PM