Looking at the documentation for TpConnection::status: > This connection's status, or TP_UNKNOWN_CONNECTION_STATUS if we don't know yet. > > Default value: 4294967295 Is there any way to stop gtkdoc expanding TP_UNKNOWN_CONNECTION_STATUS, which is #defined to -1?
We could work around gtk-doc expanding the #define by replacing: #define TP_UNKNOWN_CONNECTION_STATUS ((TpConnectionStatus) -1) with something like: enum { _TP_UNKNOWN_CONNECTION_STATUS = -1 }; #define TP_UNKNOWN_CONNECTION_STATUS ((TpConnectionStatus) _TP_UNKNOWN_CONNECTION_STATUS) if we were so inclined.
Forwarded to http://bugzilla.gnome.org/show_bug.cgi?id=556120
gtk-doc can't work around this, so we can't fix this without using a dummy anonymous enum.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.