mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
23 lines
377 B
Text
23 lines
377 B
Text
void verifyrun(string file)
|
|
{
|
|
printf("\n"
|
|
"checking tmp/docs/latex/" + file + ":\n");
|
|
|
|
system(P_NOCHECK,
|
|
"grep -i \"overfull\\|undefined\" " + file + " | "
|
|
"fgrep -v polymorphism/undefined");
|
|
}
|
|
|
|
void verify()
|
|
{
|
|
chdir("tmp/docs/latex");
|
|
|
|
verifyrun("cplusplus.log");
|
|
verifyrun("cplusplusus.log");
|
|
|
|
exit(0);
|
|
}
|
|
|
|
|
|
|
|
|