Visual C++: Suppress compiler warnings

This commit is contained in:
Daniel Marjamäki 2009-12-06 20:34:02 +01:00
parent 3c063bfdb8
commit 3100bb3ccc
1 changed files with 6 additions and 0 deletions

View File

@ -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;