Re: VacAttrStatsP vs VacAttrStats * (typedef'ing pointer types)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: VacAttrStatsP vs VacAttrStats * (typedef'ing pointer types)
Дата
Msg-id 25814.1209765211@sss.pgh.pa.us
обсуждение исходный текст
Ответ на VacAttrStatsP vs VacAttrStats * (typedef'ing pointer types)  (Jan Urbański <j.urbanski@students.mimuw.edu.pl>)
Список pgsql-hackers
Jan Urbański <j.urbanski@students.mimuw.edu.pl> writes:
> While looking around vacuum.h (for my GSoC project) I found:
> typedef struct VacAttrStats *VacAttrStatsP;
> and then throughout the code sometimes VacAttrStats *foo is used and 
> sometimes VacAttrStatsP bar is used.

> Call this obsessive-compulsive disorder, but it kind of bothers me. Is 
> there a reason for using both notations? If not, then which one is 
> preferred and should I write a patch for it or should I just take a pill 
> or two and focus on important things?

Hmm.  We have a fairly widespread convention that pointers to structs
can be separately typedef'd as Foo where the underlying struct is
typedef FooData.  This isn't following that naming convention though,
and right offhand "FooP" doesn't seem an improvement over "Foo *".

I also notice that there are many more uses of VacAttrStats * than
VacAttrStatsP, so the collective vote about which notation is clearer
seems already taken.

If it bugs you, I'd suggest getting rid of typedef VacAttrStatsP
altogether and using VacAttrStats * everywhere.  It's surely not
too important though...
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Neil Conway
Дата:
Сообщение: Re: VacAttrStatsP vs VacAttrStats * (typedef'ing pointer types)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: ecpg localization