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
Working on the current release of kinetic-devel it looks like there are some compiler warnings generated for a few methods in InterfaceManager that have a return type but don't have a return statement. The offenders are here, here, and here.
Haven't looked into what these methods actually do, so it might technically not be a problem, but since my group develops with -Werror on by default it's a pain to have to now go manually ignore it with -Wno-return-type. Also seems like kinda bad c++ foo. Thanks!
The text was updated successfully, but these errors were encountered:
Working on the current release of
kinetic-devel
it looks like there are some compiler warnings generated for a few methods inInterfaceManager
that have a return type but don't have a return statement. The offenders are here, here, and here.Haven't looked into what these methods actually do, so it might technically not be a problem, but since my group develops with
-Werror
on by default it's a pain to have to now go manually ignore it with-Wno-return-type
. Also seems like kinda bad c++ foo. Thanks!The text was updated successfully, but these errors were encountered: