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