MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / all_errors

Method all_errors

Source/ThirdParty/exr_reader.hh:34–41  ·  view source on GitHub ↗

Get all errors as a single string

Source from the content-addressed store, hash-verified

32
33 // Get all errors as a single string
34 std::string all_errors() const {
35 std::string result;
36 for (size_t i = 0; i < errors_.size(); i++) {
37 if (i > 0) result += "\n";
38 result += errors_[i];
39 }
40 return result;
41 }
42
43 // Clear error stack
44 void clear_errors() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected