MCPcopy Create free account
hub / github.com/catboost/catboost / vwarnx

Function vwarnx

util/system/err.cpp:14–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12#include <cstdlib>
13
14void vwarnx(const char* fmt, va_list args) {
15 Cerr << GetProgramName() << ": ";
16
17 if (fmt) {
18 Printf(Cerr, fmt, args);
19 }
20
21 Cerr << '\n';
22}
23
24void vwarn(const char* fmt, va_list args) {
25 int curErrNo = errno;

Callers 2

warnxFunction · 0.85
verrxFunction · 0.85

Calls 1

PrintfFunction · 0.50

Tested by

no test coverage detected