mirror of
https://github.com/boostorg/context.git
synced 2026-01-22 17:12:17 +00:00
On C++11 static local variables are initialized in thread-safe manner, but even on C++03 it should not be a problem because in our case variables are of trivial types, which means double initialization is not an issue, and they are initialized with the same value in every thread.