MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / make_any

Function make_any

include/behaviortree_cpp/contrib/any.hpp:546–549  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

544
545template <typename T, typename... Args>
546any make_any(Args&&... args)
547{
548 return any(in_place_type_t<T>{}, std::forward<Args>(args)...);
549}
550
551template <typename T, typename U, typename... Args>
552any make_any(std::initializer_list<U> il, Args&&... args)

Callers

nothing calls this directly

Calls 1

anyClass · 0.85

Tested by

no test coverage detected