29 lines
694 B
C++
29 lines
694 B
C++
|
|
||
|
// Test library configuration for libsigc++.cfg
|
||
|
//
|
||
|
// Usage:
|
||
|
// $ cppcheck --check-library --enable=information --error-exitcode=1 --suppress=missingIncludeSystem --inline-suppr test/cfg/libsigc++.cpp
|
||
|
// =>
|
||
|
// No warnings about bad library configuration, unmatched suppressions, etc. exitcode=0
|
||
|
//
|
||
|
|
||
|
#include <sigc++/sigc++.h>
|
||
|
|
||
|
struct struct1 : public sigc::trackable {
|
||
|
void func1(int) const {}
|
||
|
};
|
||
|
|
||
|
void valid_code()
|
||
|
{
|
||
|
const struct1 my_sruct1;
|
||
|
sigc::slot<void, int> sl = sigc::mem_fun(my_sruct1, &struct1::func1);
|
||
|
if (sl) {}
|
||
|
}
|
||
|
|
||
|
void ignoredReturnValue()
|
||
|
{
|
||
|
const struct1 my_sruct1;
|
||
|
// cppcheck-suppress ignoredReturnValue
|
||
|
sigc::mem_fun(my_sruct1, &struct1::func1);
|
||
|
}
|