static*/
| 6 | namespace CesiumUtility { |
| 7 | |
| 8 | /*static*/ ErrorList ErrorList::error(std::string errorMessage) { |
| 9 | return ErrorList{{std::move(errorMessage)}, {}}; |
| 10 | } |
| 11 | |
| 12 | /*static*/ ErrorList ErrorList::warning(std::string warningMessage) { |
| 13 | return ErrorList{{}, {std::move(warningMessage)}}; |
no outgoing calls
no test coverage detected