In a line line this
|
return src && src->type() == typeid(T) ? &static_cast<impl<T> *>(src->m_impl.get())->m_obj : nullptr; |
it turns out the overhead can be 20x more than a regular function call. Could this be improved for the case of low-latency applications?
In a line line this
cpp_bindgen/include/cpp_bindgen/common/any_moveable.hpp
Line 61 in d0b4b21
it turns out the overhead can be 20x more than a regular function call. Could this be improved for the case of low-latency applications?