Visual C++: Suppress compiler warnings
This commit is contained in:
parent
3c063bfdb8
commit
3100bb3ccc
|
@ -1177,6 +1177,9 @@ private:
|
|||
return new CheckNullpointer(*this);
|
||||
}
|
||||
|
||||
/* no implementation */
|
||||
void operator=(const CheckNullpointer &);
|
||||
|
||||
const unsigned int varId;
|
||||
bool null;
|
||||
|
||||
|
@ -1234,6 +1237,9 @@ private:
|
|||
return new CheckUninitVar(*this);
|
||||
}
|
||||
|
||||
/* no implementation */
|
||||
void operator=(const CheckUninitVar &);
|
||||
|
||||
const unsigned int varId;
|
||||
const bool pointer;
|
||||
const bool array;
|
||||
|
|
Loading…
Reference in New Issue