| 231 | /** This operation can be safely used concurrently with other push, try_pop or emplace operations. */ |
| 232 | template<typename... Args> |
| 233 | void emplace(Args&&... args) { |
| 234 | push(value_type(std::forward<Args>(args)...)); |
| 235 | } |
| 236 | #endif /* __TBB_CPP11_VARIADIC_TEMPLATES_PRESENT */ |
| 237 | #endif /* __TBB_CPP11_RVALUE_REF_PRESENT */ |
| 238 |
nothing calls this directly
no test coverage detected