Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

ISO C++ March 2024 Virtual Trip Report (Core Language)

April 30, 2024
Jason Merrill

Share:

    The work toward ISO C++26 is coming along steadily. The spring committee meeting this year was in Tokyo; from Red Hat, Jonathan Wakely and I attended remotely (from the UK and the US East Coast, respectively).  He was mostly in the Library working group, and I was in Core.

    Core language changes moved at this meeting

    P2795R5 Erroneous behaviour for undefined reads

    This paper introduces the notion of "erroneous" behavior for patterns that are considered to be bugs, such as reading from an uninitialized variable.  Instead of getting an indeterminate value, the read gets an implementation-defined but consistent value, and the program is allowed to emit a diagnostic and/or terminate execution.

    void f() {
      int i;
      int j = i; // erroneous behavior
    }

    Implementing this in GCC will probably build on the existing -ftrivial-auto-var-init flag, which currently provides an implementation-defined value, but interferes with memory debugging tools like Valgrind; the implementation of this feature will need a way to communicate to Valgrind to still consider the memory to be uninitialized.

    Programs for which the now-implied initialization carries an unacceptable performance penalty can mark variables with [[indeterminate]] to return to the C++23 semantics.
     

    P2748R5 Disallow Binding a Returned Glvalue to a Temporary

    This paper makes ill-formed returning a temporary by reference, since it immediately produces a dangling reference.  GCC already warned about this with -Wreturn-local-addr, so implementing this change was trivial.

    int&& f() { return 42; } // now error

    P0609R3 Attributes for Structured Bindings

    This paper allows applying attributes to structured bindings, e.g.

    struct A { int i,  j; } a { 24, 42 };
    auto &[x, y [[maybe_unused]] ] = a;

    This was also straightforward to implement in GCC.

    P2809R3 Trivial lnfinite loops are not Undefined Behavior

    This paper harmonizes C and C++ by clarifying that for e.g.

    constexpr bool yes() { return true; }
    // ...
    while (yes())
      /*spin*/;

    the implementation may not assume that the loop will eventually terminate.

    P2573R2 =delete("should have a reason")

    This paper adds a user-defined message to deleted function diagnostics, much like [[deprecated]] in C++14.

    P2893R3 Variadic friends

    This paper allows befriending all the types in a parameter pack, e.g.

    template<class... Ts>
    class Foo {
      friend Ts...;
    };

    Core language changes almost ready

    One feature was almost ready to go in, but at the last minute was pulled back for more refinement:

    P3032R1 Less transient constexpr allocation

    This paper proposes to allow constexpr allocation to persist past the end of a constexpr variable initialization, if it occurs in immediate function context:

    consteval int f()
    {
      constexpr std::vector v = { 1, 2, 3 }; // allocates storage
      return v.size ();
    } // storage released here

    This seems likely to pass at the next meeting.

    Major core language features in development

    Major C++26 features are also starting to move out of study groups.  In particular, Reflection, Contracts, and Pattern Matching went to the Evolution Working Group (EWG) for feedback at this meeting.

    P2996R2 Reflection for C++26

    This paper provides compile-time reflection that can in turn be used in metaprogramming.

    constexpr auto r = ^int;
    typename[:r:] x = 42;       // Same as: int x = 42;

    EWG was enthusiastic about this proposal and it seems on track for C++26.

    P2900R6 Contracts for C++ 

    This proposal provides mechanisms for optionally checking that a function's requirements for its arguments and return value do in fact hold, and calling a violation handler to report the problem.

    int f(const int x)
      pre (x != 1) // a precondition assertion
      post(r : r != 2) // a postcondition assertion; r refers to the return value of f 
    {
      contract_assert (x != 3); // an assertion statement
      return x; 
    }

    Contracts were originally planned for C++20, but were removed late in the process due to late disagreements about customizability and concerns about undefined behavior.  So they went back to a study group to work on a consensus "Minimum Viable Product" version of the feature, which has seemed on track for C++26.  But when it came to EWG there were again widely differing opinions on various aspects of the proposal, so the path forward is still uncertain.

    P2688R1 Pattern Matching

    This proposal provides a convenient syntax for handling different cases of a data structure that are too complicated for 'switch' and would therefore need a series of ifs, e.g.

    // tuple p
    p match {
      [0, 0] => std::print("on origin");
      [0, let y] => std::print("on y-axis at {}", y);
      [let x, 0] => std::print("on x-axis at {}", x);
      let [x, y] => std::print("at {}, {}", x, y); 
    };

    EWG was encouraging but requested more implementation experience.

    The next meeting will be June 24-29 in St. Louis, MO.

    Disclaimer: Please note the content in this blog post has not been thoroughly reviewed by the Red Hat Developer editorial team. Any opinions expressed in this post are the author's own and do not necessarily reflect the policies or positions of Red Hat.

    Recent Posts

    • Skopeo: The unsung hero of Linux container-tools

    • Automate certificate management in OpenShift

    • Customize RHEL CoreOS at scale: On-cluster image mode in OpenShift

    • How to set up KServe autoscaling for vLLM with KEDA

    • How I used Cursor AI to migrate a Bash test suite to Python

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue