| 162 | template <typename Arg, FMT_ENABLE_IF(!is_like_std_string< |
| 163 | typename std::decay<Arg>::type>::value)> |
| 164 | FMT_CONSTEXPR const char* format_str_quoted(bool add_space, const Arg&) { |
| 165 | return add_space ? " {}" : "{}"; |
| 166 | } |
| 167 | |
| 168 | template <typename Arg, FMT_ENABLE_IF(is_like_std_string< |
| 169 | typename std::decay<Arg>::type>::value)> |
no outgoing calls
no test coverage detected