Larry Ruckman - 2018-11-13

Here's are the instructions for by doxygen build:
$ git-lfs install
$ git clone https://github.com/slaclab/surf -b ESCORE-169
$ cd surf
$ doxygen Doxyfile

When I run doxygen, I get a bunch of "No matching class member" in my waring log (WARN_LOGFILE.log)

Here's an example of one of those messages:
axi/axi-stream/rtl/AxiStreamMonAxiL.vhd:81: warning: no matching class member found for
Slv32Array()
https://github.com/slaclab/surf/blob/ESCORE-169/axi/axi-stream/rtl/AxiStreamMonAxiL.vhd#L81

Note: subtype Slv32Array is defined in the StdRtlPkg.vhd package file
https://github.com/slaclab/surf/blob/ESCORE-169/base/general/rtl/StdRtlPkg.vhd#L388

I am using doxygen version 1.8.14
$ doxygen -v
1.8.14

How can I resolve all these "No matching class member" warning messages?

-Larry