| 3204 | |
| 3205 | template<typename T, typename... Args> |
| 3206 | inline constexpr std::array<T, sizeof...(Args)> make_array(Args&& ... args) |
| 3207 | { |
| 3208 | return std::array<T, sizeof...(Args)> {{static_cast<T>(std::forward<Args>(args))...}}; |
| 3209 | } |
| 3210 | |
| 3211 | } // namespace detail |
| 3212 | NLOHMANN_JSON_NAMESPACE_END |
nothing calls this directly
no outgoing calls
no test coverage detected