Fix MSVC warnings, rename shadowed variables, fix uninitialized values, change warnings=all to use /W4.

This commit is contained in:
bruvzg 2022-09-29 12:53:28 +03:00
parent 5b7f62af55
commit 0103af1ddd
No known key found for this signature in database
GPG key ID: 7960FCF39844EC38
240 changed files with 3390 additions and 3431 deletions

View file

@ -71,8 +71,8 @@ class TPPLPoly {
return hole;
}
void SetHole(bool hole) {
this->hole = hole;
void SetHole(bool p_hole) {
this->hole = p_hole;
}
TPPLPoint &GetPoint(long i) {