Skip to content

STDet: replace boost::bind with lambda

Gerhard Raven requested to merge STDet-avoid-bind into master

std::bind has significant overhead (both at runtime as well as compile time) compared to a lambda (std::bind makes inlining completely impossible). As a result std::bind should be avoided.

Merge request reports