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

Function SchemaValidityDebug

pdal/XMLSchema.cpp:140–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140void SchemaValidityDebug
141(void * /*ctx*/, const char* message, ...)
142{
143 const int ERROR_MESSAGE_SIZE = 256;
144 char error[ERROR_MESSAGE_SIZE];
145 va_list arg_ptr;
146
147 va_start(arg_ptr, message);
148 vsnprintf(error, ERROR_MESSAGE_SIZE, message, arg_ptr);
149 va_end(arg_ptr);
150
151 std::cout << "Schema validity debug: '" << error << "' " << "\n";
152}
153
154
155void SchemaGenericErrorHandler

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected