Closed RDIL closed 2 years ago
This looks like a big PR, but really isn't.
The goal is to reduce nesting where possible by changing code from this format:
void hello() { if (file_exists) { // all the logic } else { LOG_AND_EXIT("uh oh"); } }
To this format:
void hello() { ASSERT_EXISTS() // all the logic }
Download the artifacts for this pull request:
This looks like a big PR, but really isn't.
The goal is to reduce nesting where possible by changing code from this format:
To this format:
Why?