vtk-m/docs/changelog/use-std-call-once-to-construct-singletons.md
Haocheng LIU ce9cd8072a Use std::call_once to construct singeltons
By using `call_once` from C++11, we can simplify the logic in code
where we are querying same value variables from multiple threads.
2018-08-06 16:36:03 -04:00

178 B

Use std::call_once to construct singeltons

By using call_once from C++11, we can simplify the logic in code where we are querying same value variables from multiple threads.