mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-20 22:06:25 +08:00
Specialize std::iter_swap() for wxString::iterator in C++11 mode as the default implementation of it doesn't work for iterators using "reference" type different from "value_type&" as is the case for wxString::iterator. This notably allows the code using std::reverse() with wxString iterators to compile in C++11 mode, which wasn't the case before.