Re: [Doxygen-users] ASSERT: "0" in docparser.cpp (5747)
Brought to you by:
dimitri
From: mkluwe <mk...@vh...> - 2016-10-27 10:18:46
|
Hi! >> After adding missing documentation in several files doxygen started to >> complain, printing several assert messages: >> >> ASSERT: "0" in e:\doxygen\src\docparser.cpp (5747) >> todo:7: warning: Unexpected tag <dd> found >> ASSERT: "0" in e:\doxygen\src\docparser.cpp (5747) >> todo:9: warning: Unexpected tag <dd> found >> ASSERT: "0" in e:\doxygen\src\docparser.cpp (5747) >> todo:11: warning: Unexpected tag <dd> found >> todo:13: warning: Unexpected tag <dd> found >> ASSERT: "0" in e:\doxygen\src\docparser.cpp (5747) >> todo:15: warning: Unexpected tag <dd> found >> todo:16: warning: Unexpected tag <dd> found >> todo:17: warning: Unexpected tag <dd> found >> ASSERT: "0" in e:\doxygen\src\docparser.cpp (5747) >> todo:18: warning: Unexpected tag <dd> found > I have found it: > > One of my doxygen comment contained a smiley (unicode character WHITE > SMILING > FACE, encoded as `0xE2 0x98 0xBA` in my UTF-8 encoded file). After > removing > this, the burps above are gone. Ah, that was a false positive, sorry for the noise. Now for the real reason: The error is produced by a `\todo` in an XML C# code comment like this /// <summary> /// \todo tbd /// </summary> public double Foo { get; set; } Regards, Matthias -- View this message in context: http://doxygen.10944.n7.nabble.com/ASSERT-0-in-docparser-cpp-5747-tp7738p7745.html Sent from the Doxygen - Users mailing list archive at Nabble.com. |