Enforce use of bool literals instead of integers
Using clang-tidy's `modernize-use-bool-literals`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html
This commit is contained in:
parent
1a8167867b
commit
dcd1151d77
31 changed files with 60 additions and 58 deletions
|
|
@ -723,7 +723,7 @@ void Polygon2D::_bind_methods() {
|
|||
|
||||
Polygon2D::Polygon2D() {
|
||||
|
||||
invert = 0;
|
||||
invert = false;
|
||||
invert_border = 100;
|
||||
antialiased = false;
|
||||
tex_rot = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue