Difference between revisions of "Cpp features blocked by version"

From The Battle for Wesnoth Wiki
(Benefits that don't justify version increases)
(Benefits that don't justify version increases)
Line 5: Line 5:
 
This is a non-exhaustive list:
 
This is a non-exhaustive list:
 
* Improving compile speed.
 
* Improving compile speed.
* Pretty much any library feature that we can just as well get through boost or other means.
+
* Pretty much any standard library feature that we can just as well get through boost or other means.
  
 
== Benefits that do justify version increases ==
 
== Benefits that do justify version increases ==

Revision as of 15:11, 25 July 2024

Summary

This is a listing of C++ features that would be useful to have but can't yet be used. The Feature column is the language or standard library feature (https://en.cppreference.com/w/cpp/compiler_support is a good reference). The Benefit column is what having this feature will allow to be done. The remaining three columns are for the minimum requirements for the feature to be available on each platform. The minimum requirements can be anything - Visual Studio version, compiler version, OS version, etc.

Benefits that don't justify version increases

This is a non-exhaustive list:

  • Improving compile speed.
  • Pretty much any standard library feature that we can just as well get through boost or other means.

Benefits that do justify version increases

This is a non-exhaustive list:

  • Required to fix a bug that has a significant impact to players.

Features

Feature Benefit Windows macOS Linux Notes
Modules Faster compile time Unknown Unknown Unknown While part of C++20, usable support seems to be progressing very slowly.
std::starts_with and ends_with Simplies string checking in various places, including filesystem MSVC STL 19.21* Apple Clang 10.0.0* GCC libstdc++ 9/Clang libc++ 6