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
My issue is that i have a class with a bunch of constants and it seems to fail to recognise those with the following warnings:
WARNING: Failed to find xref for: constbool, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
WARNING: Failed to find xref for: conststring, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
WARNING: Failed to find xref for: constint, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
WARNING: Failed to find xref for: constfloat, no objects found that end like this, searched in object types: ['class', 'struct', 'interface', 'function', 'var', 'event', 'enum']
In my case its an child/internal static class, however the behaviour seems to be the same for any consts. static keyword is also added implicitly in the generated sphinx docs (not present in doxygen html)
class definition:
namespace Namespace
{
public class OuterClass
{
public static class InnerClass
{
public const int SomeInt = 123;
}
}
}
Any ideas how to get rid of the static keyword or at least split the constint into two keywords?
Or how to get the sphinx/breathe html output closer to that of doxygen?
Best,
Wiktor
The text was updated successfully, but these errors were encountered:
Hey, thanks for the great work!
I have a C# project and seem to have an issue with the sphinx output for
const
variables.I think I'm on latest breathe and rogerbarton/sphinx-csharp
c# support issue xref #550
sphinx-csharp issue xref
My issue is that i have a class with a bunch of constants and it seems to fail to recognise those with the following warnings:
In my case its an child/internal static class, however the behaviour seems to be the same for any consts.
static
keyword is also added implicitly in the generated sphinx docs (not present in doxygen html)class definition:
Doxygen output:
Doxygen html output:
Sphinx html output:
Any ideas how to get rid of the
static
keyword or at least split theconstint
into two keywords?Or how to get the sphinx/breathe html output closer to that of doxygen?
Best,
Wiktor
The text was updated successfully, but these errors were encountered: