forked from pfqgauxfb/code-analysis
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.5 KiB
107 lines
2.5 KiB
|
|
// Test library configuration for boost.cfg
|
|
//
|
|
// Usage:
|
|
// $ cppcheck --check-library --library=boost --enable=style,information --inconclusive --error-exitcode=1 --disable=missingInclude --inline-suppr test/cfg/boost.cpp
|
|
// =>
|
|
// No warnings about bad library configuration, unmatched suppressions, etc. exitcode=0
|
|
//
|
|
|
|
// cppcheck-suppress-file valueFlowBailout
|
|
|
|
#include <boost/config.hpp>
|
|
#include <boost/math/special_functions/round.hpp>
|
|
#include <boost/endian/conversion.hpp>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/function.hpp>
|
|
#include <boost/smart_ptr/scoped_array.hpp>
|
|
#include <boost/thread/mutex.hpp>
|
|
#include <boost/thread/lock_guard.hpp>
|
|
|
|
BOOST_FORCEINLINE void boost_forceinline_test()
|
|
{}
|
|
|
|
BOOST_NOINLINE void boost_noinline_test()
|
|
{}
|
|
|
|
BOOST_NORETURN void boost_noreturn_test()
|
|
{}
|
|
|
|
void print_hello()
|
|
{
|
|
printf("hello");
|
|
}
|
|
|
|
void valid_code(boost::function<void(void)> &pf_print_hello)
|
|
{
|
|
if (BOOST_LIKELY(1)) {}
|
|
if (BOOST_UNLIKELY(0)) {}
|
|
|
|
int int1 = 5;
|
|
boost::endian::endian_reverse_inplace(int1);
|
|
boost::bind(print_hello)();
|
|
pf_print_hello = boost::bind(print_hello);
|
|
}
|
|
|
|
void ignoredReturnValue()
|
|
{
|
|
// cppcheck-suppress ignoredReturnValue
|
|
boost::math::round(1.5);
|
|
// cppcheck-suppress ignoredReturnValue
|
|
boost::math::iround(1.5);
|
|
// cppcheck-suppress ignoredReturnValue
|
|
boost::math::lround(1.5);
|
|
// cppcheck-suppress ignoredReturnValue
|
|
boost::math::llround(1.5);
|
|
// cppcheck-suppress ignoredReturnValue
|
|
boost::endian::endian_reverse(1);
|
|
}
|
|
|
|
void uninitvar()
|
|
{
|
|
int intUninit1;
|
|
int intUninit2;
|
|
// cppcheck-suppress uninitvar
|
|
boost::endian::endian_reverse_inplace(intUninit1);
|
|
// cppcheck-suppress uninitvar
|
|
(void)boost::math::round(intUninit2);
|
|
}
|
|
|
|
void throwexception(int * buf)
|
|
{
|
|
if (!buf)
|
|
boost::throw_exception(std::bad_alloc());
|
|
*buf = 0;
|
|
}
|
|
|
|
void throwexception2(int * buf)
|
|
{
|
|
if (!buf)
|
|
BOOST_THROW_EXCEPTION(std::bad_alloc());
|
|
*buf = 0;
|
|
}
|
|
|
|
void macros()
|
|
{
|
|
#define DECL(z, n, text) text ## n = n;
|
|
BOOST_PP_REPEAT(5, DECL, int x)
|
|
|
|
BOOST_SCOPED_ENUM_DECLARE_BEGIN(future_errc) {
|
|
// cppcheck-suppress valueFlowBailoutIncompleteVar
|
|
no_state
|
|
}
|
|
BOOST_SCOPED_ENUM_DECLARE_END(future_errc)
|
|
}
|
|
|
|
void containerOutOfBounds_scoped_array(std::size_t n) // #12356
|
|
{
|
|
boost::scoped_array<int> d(new int[n] {});
|
|
for (std::size_t i = 0; i < n; i++)
|
|
if (d[i]) {}
|
|
}
|
|
|
|
void lock_guard_finiteLifetime(boost::mutex& m)
|
|
{
|
|
// cppcheck-suppress unusedScopedObject
|
|
boost::lock_guard<boost::mutex>{ m };
|
|
} |