src/checkunusedfunctions.h: assign default values in initializer list.
No functional change.
This commit is contained in:
parent
170f4cf788
commit
879174b06c
|
@ -53,12 +53,8 @@ private:
|
|||
class FunctionUsage
|
||||
{
|
||||
public:
|
||||
FunctionUsage()
|
||||
{
|
||||
filename = "";
|
||||
usedOtherFile = false;
|
||||
usedSameFile = false;
|
||||
}
|
||||
FunctionUsage() : usedSameFile(false), usedOtherFile(false)
|
||||
{ }
|
||||
|
||||
std::string filename;
|
||||
bool usedSameFile;
|
||||
|
|
Loading…
Reference in New Issue