| 309 | |
| 310 | template<typename ClassType, typename ReturnType, typename... Args> |
| 311 | auto select_const(ReturnType (ClassType::*method)(Args...) const) -> decltype(method) { |
| 312 | return method; |
| 313 | } |
| 314 | |
| 315 | namespace internal { |
| 316 | // this should be in <type_traits>, but alas, it's not |
no outgoing calls