In doxygen, I am getting the following warning: Documented symbol `enum DDD
NamespaceA::NamespaceB::XYZ' was not declared or defined.

The enum in question is not even documented in doxygen so I don't know why
the message above is showing up. Note that the enum is outside a class.

namespace NamespaceA {
namespace NamespaceB{
enum DDD XYZ {
    SORT_ASC      = 1,
    SORT_DESC     = -1
};
}
}

I have tried documenting the above enum.
I have also tried adding a \file tag to the file as well. However, I still
get the same warning message.

How do I get rid of the warning message ? Note that I'm using Doxygen 1.8.10



--
Sent from: http://doxygen.10944.n7.nabble.com/Doxygen-Users-f3.html

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to