Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      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
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java 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

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • 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

Red Hat at the ISO C++ Standards Meeting, Bristol, UK

May 16, 2013
Matt Newsome
Related topics:
Developer ToolsLinux
Related products:
Developer ToolsRed Hat Enterprise Linux

Share:

    Red Hat has actively participated in the ISO group defining the C++ standard for many years, and continues to make a significant contribution. The Red Hat toolchain team was well-represented at the spring meeting of the standardization committee (technically JTC1/SC22/WG21) in Bristol, UK, last month: we had three people there for the full week, with one other visiting a couple of times during the week. In this article, Jason Merrill summarizes the main highlights and developments of interest to Red Hat's customers and partners:

    Since the publication of the 2011 standard, (you can buy a copy of the full standard from ansi.org here) the pace of development of the language has picked up significantly, and the committee is aiming for an updated standard in 2014, with a few additional features relative to C++11.  If we're going to keep to that schedule, this was the last meeting for accepting any new features into the working draft.

    The new language features we accepted for 2014 are:

    • Binary literals

       

      unsigned mask = 0b101001

      These have been accepted by GCC since 4.3 as a GNU extension.

    • Return type deduction for normal functions:
      auto f() { return 42; }

      This addresses a hole noticed by many C++ users introduced to C++11 auto and lambda return type deduction, by extending the same return type deduction semantics to normal functions.  This proposal and its initial implementation were developed in GCC by Red Hat's Jason Merrill.

    • Arrays of runtime bound (VLAs):
      void f(int n) { int array[n]; ... }

      Variable length arrays have been part of GCC for many years, and were added to C in the C99 standard; with the acceptance of this proposal, they are now part of C++ as well.  But there are some significant restrictions relative to the C/GCC feature: C++ VLA types can only be used to declare array variables, and trying to create a pointer or reference to such an array, or take its sizeof, is ill-formed.  For more flexible arrays of dynamic size, see std::dynarray below.

    • Lambda capture initializers:
       
      [x = 42]{ return x; }

      This was part of the original lambda proposal for C++11, and has been supported by GCC since lambdas were added in GCC 4.5.

    • Polymorphic/generic lambdas:
       
      [](auto x){ return x+1; }
      

      Several people at the meeting said that this is the feature they've had the most users asking for to complete C++11.  The syntax causes the lambda function-call operator to be a member template rather than a non-template function.

    • Variable templates:
      template <class T> constexpr T pi = 3.14159...

      In C++11, programmers who want to write a simple parameterized constant need to wrap their variable in a class template; the next standard will allow them to make the variable itself a template.  This feature has been developed in G++.

    • Extended constexpr:
       
      constexpr int fact(int i) {
        int product = 0;
        for (int j = 1; j < i; ++j)
          product *= j;
          return j;
        }

      This proposal removes many of the C++11 restrictions on operations within a constexpr function: most notably, a constant expression can now modify a variable with a lifetime that is limited to the expression, and loops can be used. 

    We also expect to publish at around the same time a separate technical specification describing the "concepts lite" feature (http://concepts.axiomatics.org/~ans/), which has been developed in GCC and currently seems likely to be part of C++17 if it is not supplanted by a different concepts design. 

    Notable new library functionality accepted for the next standard includes:

    • Compile-time integer sequences:

       

      template <size_t... I>
      void f(std::index_sequence<I...>)
      { dump(db.get(I)...); }
    • Addressing tuples by type:
      tuple<string, string, int> t("foo", "bar", 7);
      int i = get<int>(t); // i == 7
    • std::exchange, to provide usage similar to atomic exchange:
      if (pointer old = std::exchange(ptr_, p))
      deleter_(old);
    • std::make_unique:
      // s is a unique_pointer<string>
      auto s = make_unique<string>("foo"); 
    • Quoted strings:
      // outputs: "She said "Hi!""
      std::cout << quoted("She said "Hi!""); 
    • User-defined literal operators for string and chrono:
      "foo"s // Has type string
      12h    // Has type chrono::hours 
    • Improved transformation traits:
      // equivalent to typename remove_reference<T>::type
      remove_reference_t<T> 
    • Optional objects:
      optional<int> oi;
      ...
      if (oi) digest(*oi);
    •  std::dynarray: Like std::array to constant-size arrays:
      dynarray<int>{1,2,3,4};
    • std::shared_mutex: Locks that can be held in shared mode or upgraded to being held exclusively.

    We also expect to publish technical specifications for filesystems and networking libraries in the same time frame as the standard.

    A significant amount of this new functionality will be available in GCC 4.9, and we are working to implement the rest.

    We hope you see something in this preview that looks interesting to you; leave a comment and let us know what you think!

    Thanks to Jason Merrill of Red Hat's toolchain team for this summary.

    Last updated: January 9, 2023

    Recent Posts

    • More Essential AI tutorials for Node.js Developers

    • How to run a fraud detection AI model on RHEL CVMs

    • How we use software provenance at Red Hat

    • Alternatives to creating bootc images from scratch

    • How to update OpenStack Services on OpenShift

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    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

    Red Hat legal and privacy links

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

    Report a website issue