Michael Matz <m...@suse.de> writes: > syntactic noise without any whitespace. Quite frankly, how anyone could > ever say that > > exp->as_component_ref().get_field() > > is easier to read/write/use than > > GET_FIELD_DECL (exp)
C vs C++ is not the same argument as style A vs style B. Your argument could just as easily been this way: > syntactic noise without any whitespace. Quite frankly, how anyone could > ever say that > > exp.get_field_decl() > > is easier to read/write/use than > > GET_DECL (GET_FIELD (AS_COMPONENT (exp))) The choice of language does not force you to choose a style, those are independent choices.