MCPcopy Create free account
hub / github.com/fmtlib/fmt / unwrap

Function unwrap

include/fmt/args.h:26–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24struct is_reference_wrapper<std::reference_wrapper<T>> : std::true_type {};
25
26template <typename T> auto unwrap(const T& v) -> const T& { return v; }
27template <typename T>
28auto unwrap(const std::reference_wrapper<T>& v) -> const T& {
29 return static_cast<const T&>(v);

Callers 2

emplace_argFunction · 0.85
push_backFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected