Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

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

May 16, 2013
Matt Newsome
Related topics:
Developer toolsLinux
Related products:
Developer ToolsetRed Hat Enterprise Linux

    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

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    • Fun in the RUN instruction: Why container builds with distroless images can surprise you

    • Trusted software factory: Building trust in the agentic AI era

    • Build a zero trust AI pipeline with OpenShift and RHEL CVMs

    • Red Hat Hardened Images: Top 5 benefits for software developers

    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
    © 2026 Red Hat

    Red Hat legal and privacy links

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

    Chat Support

    Please log in with your Red Hat account to access chat support.