-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
Starting with release 1.13.0, C++17 standard will be the lowest fully supported version.
What does that mean for POCO users?
- it will be possible to build POCO with lower versions, but without some features that require C++17
- given 1., all the existing user code will continue to work with new versions
- g++ and clang default will become
-std=c++17
- Visual Studio 2022 default will become
/std:c++17 /std:c11
; older VS versions will remain as they are
- fix std::iterator deprecated warnings
matejk