|
|
|
|
|
by lmm
499 days ago
|
|
> a defer in an if-block executes instantly, so you cannot conditionally defer anymore. Of course you can, using ?: (or && and || if you prefer), just like any other case where you want an expression rather than a statement. Or simply using the non-block form of if. (Some stupid autoformatters or tech leads insert extraneous braces, but you should be avoiding those already). |
|