MCPcopy Create free account
hub / github.com/PDAL/PDAL / SchemaValidityError

Function SchemaValidityError

pdal/XMLSchema.cpp:126–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126void SchemaValidityError
127(void * /*ctx*/, const char* message, ...)
128{
129 const int ERROR_MESSAGE_SIZE = 256;
130 char error[ERROR_MESSAGE_SIZE];
131 va_list arg_ptr;
132
133 va_start(arg_ptr, message);
134 vsnprintf(error, ERROR_MESSAGE_SIZE, message, arg_ptr);
135 va_end(arg_ptr);
136
137 std::cerr << "Schema validity error: '" << error << "' " << std::endl;
138}
139
140void SchemaValidityDebug
141(void * /*ctx*/, const char* message, ...)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected