> On Feb 7, 2019, at 12:47 PM, Daniel Bates <[email protected]> wrote:
>
> Hi all,
>
> Something bothers me about code like:
>
> void f();
> void g()
> {
> if (...)
> return f();
> return f();
> }
⸘do people do this‽
> I prefer:
>
> void g()
> {
> if (...) {
> f();
> return
> }
> f();
> }
>
> Does it bother you? For the former? For the latter? Update our style guide?
+1 to a style guide update
> Opinions, please.
>
> Dan
> _______________________________________________
> webkit-dev mailing list
> [email protected]
> https://lists.webkit.org/mailman/listinfo/webkit-dev
_______________________________________________
webkit-dev mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-dev