| 50 | /** Creates an array containing a list of strings. */ |
| 51 | template <typename... OtherElements> |
| 52 | StringArray (StringRef firstValue, OtherElements... otherValues) : strings (firstValue, otherValues...) {} |
| 53 | |
| 54 | /** Creates an array containing a list of strings. */ |
| 55 | StringArray (const std::initializer_list<const char*>& strings); |
no test coverage detected