In my C++ development, I am making the documentation with Doxygen 1.8.13. Basically it works fine, but in some cases (sorry, I could not figure out why) a warning message
The file /Myhome/build/doc/inline_mscgraph_1.eps does not exist! Skipping it.
is received. Sometimes even two such messages, sometimes no such message. As (at least intentionally) I do not want to create such a file, I presume that it should be generated by Doxygen. This is a warning when generating HTML docs, but error when creating CHM files. The .PDF also skips that missing file.
Why this file should be generated (I mean: in what circumstances), and if it should, why it is not generated? At least, how can I avoid this error situation?
It is probably not the dust of Doxygen, but related: When I generate the .chm output, I receive messages such as
Warning: Found file namespacestd.html while scanning Point_8h_source.html, but couldn't find it on disk
.
Where Point.h is really my header file, and really contains "using namespace std;"; which I think this warning is related to. It is just an annoying warning, but I receive tons of such messages, and makes it hard to notice the more meaningful warnings. Any idea how to get rid of them?
Edit: With the original question, it looks like something is wrong with handling the \msc command. (the source was compiled successfully a couple of months ago; sorry I did not remember the version)
Here I show my code fragment:
\msc "Transferring a message using proxy"
arcgradient = 8;
s[label="Source A"], p[label="Proxy B"], d[label="Dest C"];
s=>p [label="M1", ID="Original"];
p=>d [label="M2", ID="Proxied"];
\endmsc
If that code is present in my '.dox' file, I receive the message about the missing .eps file; and the entire '.dox' file is canceled from the compilation.
I noticed one more issue with the new version. In my source I have
@page BASE_Technical_Guide Technical Guide
@section TECHNICAL_GUIDE_TABLE_OF_CONTENTS Table of contents
-# @subpage Technical_Guide_Introduction_Page
-# @subpage Technical_Guide_Other_Page
That code, in the previous version, compiled to a clickable TOC, now it is displayed as text between @code @endcode
And finally, an issue for all versions:
When compiling latex/pdf docs, I receive tons of "underfull" messages. I understand that the automatic generation cannot be beautified, but could you please consider adding a line to the output to suppress those messages? https://tex.stackexchange.com/questions/99274/how-to-suppress-underfull-vbox-warning-for-one-specific-marginpar
And a last remark, for the maintainers of the site: I am warned by Grammarly to fix the mistypes. However, if I accept what Grammarly proposes, it appears as accepted in the source, but not in the preview.