MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / paramError

Function paramError

extern/cloop/src/cloop/Main.cpp:38–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36using std::runtime_error;
37
38static string paramError(const char* generator = nullptr, const char* perGenerator = nullptr)
39{
40 string text = "Invalid command line parameters. Required format: inputFile ";
41 text += generator ? generator : "outFormat (one of c-header, c-impl, c++, pascal)";
42 text += " outputFile";
43 if (perGenerator)
44 {
45 text += " ";
46 text += perGenerator;
47 }
48
49 return text;
50}
51
52//--------------------------------------
53

Callers 1

runFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected