fixed ticket 1578, class Filelister had no virtual dtor
This commit is contained in:
parent
b651acfc39
commit
e23197a527
|
@ -29,6 +29,11 @@
|
||||||
class FileLister
|
class FileLister
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* @brief destructor of class filelister
|
||||||
|
*/
|
||||||
|
virtual ~FileLister(){}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Add source files to a vector (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx)
|
* @brief Add source files to a vector (*.c;*.cpp;*.cxx;*.c++;*.cc;*.txx)
|
||||||
* @param filenames output vector that filenames are written to
|
* @param filenames output vector that filenames are written to
|
||||||
|
|
Loading…
Reference in New Issue