I use boost test for unit testing and gcov and lcov to measure coverage.
Unfortuanlly genhtml generates such reports to cover functions:

Now I want to know what the _ZN7UtilLib11ProgressBarC2EjdRSo function _ZN7UtilLib11ProgressBarC2EjdRSo .
So far I can not match this function with any interface of the ProgressBar class:
class ProgressBar { public: explicit ProgressBar( unsigned int expected_count, double updateInterval = 30, std::ostream& os = std::cout); unsigned int operator+=(unsigned int increment); unsigned int operator++(); unsigned int operator++(int i); }
Can someone help me how to get the best function names using gcov or how to understand these function names.
The application was compiled using gcc4.7 with the following flags: -g -g -save-temps=obj -Wall -Wextra -Wno-unused-parameter -Wno-error=unused-parameter -O0 -pedantic
c ++ gcov
tune2fs
source share