Re: msvc const warnings

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Re: msvc const warnings
Дата
Msg-id 46A65387.1090904@hagander.net
обсуждение исходный текст
Ответ на Re: msvc const warnings  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: msvc const warnings
Re: msvc const warnings
Список pgsql-patches
Tom Lane wrote:
> Gregory Stark <stark@enterprisedb.com> writes:
>> Can we just disable const checking for MSVCC in general without using the
>> #pragmas? It clearly doesn't understand how const works making that warning
>> from it useless.
>
> +1 ... any useful warning of this kind will be had from other compilers.

Sure, there are a couple of places we can do it:
1) We can add the pragma at the top of the file, which will turn it off
for that file, but keep it for other files.
2) We can turn it off on a per-project basis, meaning we turn it off for
the entire backend and the entire psql, but not for other EXEs and DLLs.
3) We can just turn it off for everything

Note that it'll of course turn off the warning in *all* cases, not just
the "free const chra **"-one.

Which way would be preferred?

//Magnus


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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: tsearch core path, v0.58
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: msvc const warnings