Difference between revisions of "C++20"

From Inkscape Wiki
Jump to navigation Jump to search
(Update to reflect latest CI changes, add new information)
m (Add back consteval static)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:


See also [[C++11]], [[C++17]].
See also [[C++11]], [[C++17]], [[C++23]].


Some things that will be interesting to use once C++20 is common:
Some things that will be interesting to use once C++20 is common:
Line 10: Line 10:
| <code>std::span</code>            || C++20 || style="background: lightgreen;" | from 1.4  || 10    || 11.0.3 || Handle buffers like standard library containers without risk of overflow.
| <code>std::span</code>            || C++20 || style="background: lightgreen;" | from 1.4  || 10    || 11.0.3 || Handle buffers like standard library containers without risk of overflow.
|-
|-
| <code>std::format</code>          || C++20 || style="background: pink;"      |  not yet || 13    || N/A    || Better and more efficient formatting of strings. [https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p0645r10.html Text Formatting]
| <code>std::format</code>          || C++20 || style="background: pink;"      |  not yet || 13    || 15.3  || Better and more efficient formatting of strings. [https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p0645r10.html Text Formatting]
|-
|-
| <code>std::lerp</code>            || C++20 || style="background: lightgreen;" | from 1.4  ||  9    || 11.0.3 || Linear interpolation. (ui/tools/pencil-tool.cpp)
| <code>std::lerp</code>            || C++20 || style="background: lightgreen;" | from 1.4  ||  9    || 11.0.3 || Linear interpolation. (ui/tools/pencil-tool.cpp)
|-
|-
| <code>std::bit_floor</code>      || C++20 || style="background: lightgreen;" | from 1.4  || 9/10  || 11.0.3/13.0.0 || Compute floor(log2(x)). (helper/mathfns.h)
| <code>std::bit_floor</code>      || C++20 || style="background: lightgreen;" | from 1.4  || 9/10  || 11.0.3/13.0.0 || Compute <code>floor(log2(x))</code>. (helper/mathfns.h)
|-
|-
| <code>Concepts</code>            || C++20 ||                                  from 1.4? || 6/10  || 12.0.0 Partial || Safer templating. (ui/controller.h)
| Concepts                         || C++20 ||                                  from 1.4? || 6/10  || 12.0.0 Partial || Safer templating. (ui/controller.h)
|-
|-
| <code>Coroutines</code>          || C++20 || style="background: pink;" |        not yet || 10    || 10.0.1 Partial || Simpler asynchronous code. (trace/trace.cpp)
| Coroutines                       || C++20 || style="background: pink;" |        not yet || 10    || 10.0.1 Partial,<br/> 15.3 Full || Simpler asynchronous code. (trace/trace.cpp)
|-
|-
| <code>std::make_unique_for_overwrite</code>
| <code>std::make_unique_for_overwrite</code>
                                     || C++20 || style="background: pink;" |        not yet || 11    || N/A || Don't zero arrays allocated using std::make_unique. (util/pool.cpp)
                                     || C++20 || style="background: pink;" |        not yet || 11    || 15.0.0 || Don't zero arrays allocated using std::make_unique. (util/pool.cpp)
|-
|-
| <code>Ranges</code>              || C++20 || style="background: pink;" |        not yet ||        || ? || for (init; decl : expr). (ui/dialog/swatches.cpp)
| Ranges                           || C++20 || style="background: pink;" |        not yet ||        || ? || (ui/dialog/swatches.cpp)
|-
|-
| <code>[https://stackoverflow.com/a/60244416/5075760 Structural templates]</code>
| [https://stackoverflow.com/a/60244416/5075760 Structural templates]
                                     || C++20 ||                                  from 1.4? ||        || Partial || Allow instances of arbitrary literal classes as template parameters. (display/drawing.cpp)
                                     || C++20 ||                                  from 1.4? ||        || Partial || Allow instances of arbitrary literal classes as template parameters. (display/drawing.cpp)
|-
|-
| <code>Mathematical Constants</code>
| Mathematical Constants           || C++20 ||                                            || 10    || 12.0.5 || Constants like <code>std::numbers::pi</code>.
                                    || C++20 ||                                            || 10    || 12.0.5 || Constants like std::numbers::pi.    
|-
| Heterogenous lookup in <code>std::unordered_map</code>
                                    || C++20 || style="background: pink;" |        not yet ||        ||        || Faster lookup, use of smart pointers as keys.
|-
|<code>consteval static</code> member functions
|C++20
| style="background: pink;" | not yet
|
|
|Guaranteed compile time evaluation of member functions (stronger than <code>constexpr</code>)
|}
|}


Line 42: Line 51:
** inkscape:linux: Same as above
** inkscape:linux: Same as above
* Windows
* Windows
** inkscape:windows:build: GNU 13.2.0 (temporarily disabled since GTK4 port)
** inkscape:windows:build: GNU 13.2.0
** inkscape:windows:dist: Same as above
** inkscape:windows:dist: Same as above
* macOS:
* macOS:
Line 58: Line 67:
|-
|-
| Ubuntu 23.04 (Lunar)          || 13.1.0 || 16.0.0 || 4.10.1
| Ubuntu 23.04 (Lunar)          || 13.1.0 || 16.0.0 || 4.10.1
|-
| Ubuntu 24.04 (Noble)          || 13.2.0 || 18.1.0 || 4.10.1 (???)
|}
|}



Latest revision as of 18:19, 23 April 2024

See also C++11, C++17, C++23.

Some things that will be interesting to use once C++20 is common:

Feature Since Can use? GCC Apple Clang Comment
std::span C++20 from 1.4 10 11.0.3 Handle buffers like standard library containers without risk of overflow.
std::format C++20 not yet 13 15.3 Better and more efficient formatting of strings. Text Formatting
std::lerp C++20 from 1.4 9 11.0.3 Linear interpolation. (ui/tools/pencil-tool.cpp)
std::bit_floor C++20 from 1.4 9/10 11.0.3/13.0.0 Compute floor(log2(x)). (helper/mathfns.h)
Concepts C++20 from 1.4? 6/10 12.0.0 Partial Safer templating. (ui/controller.h)
Coroutines C++20 not yet 10 10.0.1 Partial,
15.3 Full
Simpler asynchronous code. (trace/trace.cpp)
std::make_unique_for_overwrite C++20 not yet 11 15.0.0 Don't zero arrays allocated using std::make_unique. (util/pool.cpp)
Ranges C++20 not yet ? (ui/dialog/swatches.cpp)
Structural templates C++20 from 1.4? Partial Allow instances of arbitrary literal classes as template parameters. (display/drawing.cpp)
Mathematical Constants C++20 10 12.0.5 Constants like std::numbers::pi.
Heterogenous lookup in std::unordered_map C++20 not yet Faster lookup, use of smart pointers as keys.
consteval static member functions C++20 not yet Guaranteed compile time evaluation of member functions (stronger than constexpr)

References:

As of 27 March 2024, the CI runners for the various supported platforms are

  • Linux:
    • appimage:linux: GNU 13.2.0 (building on Ubuntu 23.10)
    • inkscape:linux: Same as above
  • Windows
    • inkscape:windows:build: GNU 13.2.0
    • inkscape:windows:dist: Same as above
  • macOS:
    • inkscape::macos:arm: Apple Clang 15.0.0
    • inkscape:macos:x64: Apple Clang 13.0.0 (temporarily disabled since GTK4 port)

We strive to support latest Debian stable and latest Ubuntu LTS. However, we had to break that promise since the GTK4 port, which requires gtkmm4 >= 4.14:

Distro gcc clang gtkmm4
Debian 12 (Bookworm, stable) 12.2.0 15.0.6 4.8.3
Ubuntu 22.04 (Jammy Jellyfish) 12.3.0 15.0.7 Not packaged!
Ubuntu 23.04 (Lunar) 13.1.0 16.0.0 4.10.1
Ubuntu 24.04 (Noble) 13.2.0 18.1.0 4.10.1 (???)

Ubuntu users therefore have the following options:

  • Wait for Ubuntu 24.04, expected around 25 April 2024.
  • Upgrade to Ubuntu 24.04 now.
  • Upgrade to Ubuntu 23.10 and build gtkmm4 from source, as is currently done by CI.
  • ???

Deprecated items that we still use: