diff --git a/CODING_GUIDELINES.md b/CODING_GUIDELINES.md index 63959bb43e25..e8afa15962ad 100644 --- a/CODING_GUIDELINES.md +++ b/CODING_GUIDELINES.md @@ -611,8 +611,7 @@ 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. +* Compare to `nullptr`, which is easier to read. ## Initialization