| 305 | } |
| 306 | |
| 307 | void 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 | |
| 315 | std::once_flag register_all_flag; |
| 316 | void LabSoundRegistryInit(lab::NodeRegistry& reg) |
nothing calls this directly
no outgoing calls
no test coverage detected