You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I've been using sphinx + breathe + exhale to generate documentation for a project, and I get a warning about an unresolved function. The warning message reads:
... WARNING: doxygenfunction: Unable to resolve function "ns::foo" with arguments (const bar&) in doxygen xml output for project [project] ...
Potential matches:
- bool foo(const bar &p) noexcept
In checking the generated .rst file for ns::foo, I find the following directive: .. doxygenfunction:: ns::foo(const bar&) (note the missing noexcept specifier). For reference, the full signature is:
namespacens {
boolfoo(const bar & p) noexcept;
}
Version numbers for reference:
sphinx: 4.1.2
breathe: 4.3.0
exhale: 0.2.3
Any thoughts about what's happening here? If it's expected behavior, do you have a hunch about where else the problem may originate from?
The text was updated successfully, but these errors were encountered:
So I've been using
sphinx
+breathe
+exhale
to generate documentation for a project, and I get a warning about an unresolved function. The warning message reads:In checking the generated
.rst
file forns::foo
, I find the following directive:.. doxygenfunction:: ns::foo(const bar&)
(note the missingnoexcept
specifier). For reference, the full signature is:Version numbers for reference:
Any thoughts about what's happening here? If it's expected behavior, do you have a hunch about where else the problem may originate from?
The text was updated successfully, but these errors were encountered: