我切换到最新的cppcheck,并且发现以下功能未检测到未使用。旧版本(1.75)可以检测到它。
test.cpp
#include "test1.h"
using namespace Sample;
void Ctest1::Optiitretch(SOME_ARRAY& arraylist){
#do something
}
在test1.h
namespace Sample
{
class Ctest1;
typedef std::vector<Ctest1*> SOME_ARRAY;
class Ctest1
{
static void Optiitretch(SOME_ARRAY& chartList);
}
}
有指针吗?
谢谢