diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md index 63959bb43e25..7dd0671f0f07 100644 --- a/CODING_GUIDELINES.md +++ b/CODING_GUIDELINES.md @@ -611,7 +611,6 @@ Without `auto`, code might still compile but trigger a copy or worse. ## Explicit Comparisons * Compare numerical values with `== 0` or `!= 0` explicitly ; -* Compare to `false` explicitly, which is easier to read ; * Compare to `nullptr` for the same reason. ## Initialization