lvc / abi-compliance-checker

A tool for checking backward API/ABI compatibility of a C/C++ library
https://lvc.github.io/abi-compliance-checker/
GNU Lesser General Public License v2.1
621 stars 76 forks source link

false-positive visibility change #97

Open rhaschke opened 5 years ago

rhaschke commented 5 years ago

I observe a false-positive visibility change, although the corresponding source file didn't even changed between dumps. The report as well as old and new dumps can be found in this gist. The source repository is: https://github.com/ros-visualization/rviz

Change Effect
This method became private. Recompilation of a client program may be broken with the error message: '_ZN4rviz15PanelDockWidget7setIconE5QIcon' is private.
This method became private. Recompilation of a client program may be broken with the error message: '_ZN4rviz15PanelDockWidget14setWindowTitleE7QString' is private.

The offending methods are still public in the source. Do you have any idea, what happens here?

rhaschke commented 5 years ago

I think, the culprit is the abi-dumper as a diff of both dumps reveals that these method are considered private in the newer version:

$ grep -B 4 -A 15 "'_ZN4rviz15PanelDockWidget7setIconE5QIcon'," *.dump
new.dump-                            '545060' => {
new.dump-                                          'Class' => '545034',
new.dump-                                          'Header' => 'panel_dock_widget.h',
new.dump-                                          'Line' => '57',
new.dump:                                          'MnglName' => '_ZN4rviz15PanelDockWidget7setIconE5QIcon',
new.dump-                                          'Param' => {
new.dump-                                                       '0' => {
new.dump-                                                                'name' => 'this',
new.dump-                                                                'type' => '582584'
new.dump-                                                              },
new.dump-                                                       '1' => {
new.dump-                                                                'name' => 'icon',
new.dump-                                                                'type' => '546535'
new.dump-                                                              }
new.dump-                                                     },
new.dump-                                          'Private' => 1,
new.dump-                                          'Return' => '1',
new.dump-                                          'ShortName' => 'setIcon',
new.dump-                                          'Source' => 'panel_dock_widget.cpp',
new.dump-                                          'SourceLine' => '83'
--
old.dump-                            '10985604' => {
old.dump-                                            'Class' => '10985311',
old.dump-                                            'Header' => 'panel_dock_widget.h',
old.dump-                                            'Line' => '57',
old.dump:                                            'MnglName' => '_ZN4rviz15PanelDockWidget7setIconE5QIcon',
old.dump-                                            'Param' => {
old.dump-                                                         '0' => {
old.dump-                                                                  'name' => 'this',
old.dump-                                                                  'type' => '10989931'
old.dump-                                                                },
old.dump-                                                         '1' => {
old.dump-                                                                  'name' => 'icon',
old.dump-                                                                  'type' => '535896'
old.dump-                                                                }
old.dump-                                                       },
old.dump-                                            'Return' => '1',
old.dump-                                            'ShortName' => 'setIcon',
old.dump-                                            'Source' => 'panel_dock_widget.cpp',
old.dump-                                            'SourceLine' => '83'
old.dump-                                          },