MCPcopy Create free account
hub / github.com/LabSound/LabSound / LabSoundAssertLog

Function LabSoundAssertLog

src/extended/LabSound.cpp:307–313  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307void LabSoundAssertLog(const char * file_, int line, const char * function_, const char * assertion_)
308{
309 const char * file = file_ ? file_ : "Unknown source file";
310 const char * function = function_ ? function_ : "";
311 const char * assertion = assertion_ ? assertion_ : "Assertion failed";
312 printf("Assertion: %s:%s:%d - %s\n", function, file, line, assertion);
313}
314
315std::once_flag register_all_flag;
316void LabSoundRegistryInit(lab::NodeRegistry& reg)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected