Merge branch 'check-headers-max-warn'

Check compilation of all wx headers with all gcc warnings enabled.

This should make it impossible to introduce problems that only appear
when -Wpedantic or -Wany-other-not-completely-unreasonable-warning is
enabled when building user code including wx headers again.

See https://github.com/wxWidgets/wxWidgets/pull/2033
This commit is contained in:
Vadim Zeitlin
2020-08-31 15:10:16 +02:00
24 changed files with 528 additions and 64 deletions

View File

@@ -1140,9 +1140,9 @@ private:
{
}
wxGridBlocks(iterator_impl begin, iterator_impl end) :
m_begin(begin),
m_end(end)
wxGridBlocks(iterator_impl ibegin, iterator_impl iend) :
m_begin(ibegin),
m_end(iend)
{
}