51
General (but related to Code::Blocks) / Re: New wxWidgets releases
« Last post by ollydbg on March 04, 2026, 06:31:35 am »I just compare the 2 release:
https://github.com/wxWidgets/wxWidgets/compare/v3.3.1...v3.3.2
I see this that the only 2 functions were added in the file: include/wx/dynarray.h
https://github.com/wxWidgets/wxWidgets/compare/v3.3.1...v3.3.2
I see this that the only 2 functions were added in the file: include/wx/dynarray.h
Code
T& operator[](size_t uiIndex)
{
wxASSERT( uiIndex < this->size() );
return base_vec::operator[](uiIndex);
}
const T& operator[](size_t uiIndex) const
{
wxASSERT( uiIndex < this->size() );
return base_vec::operator[](uiIndex);
}
Recent Posts