You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use unique_ptr instead of constructor/destructor in benchmarks
On Windows static builds, destructors are invoked after the UMF destructor,
causing parameter structures to be unable to be destroyed. By switching to
std::unique_ptr, we ensure that parameters are properly cleaned up and
the destruction order issue is resolved.
0 commit comments