std::simd "Hello World" on Compiler Explorer:
https://compiler-explorer.com/z/nTK4xc96f

#cpp26 #cpp #cplusplus

Compiler Explorer - C++

namespace simd = std::simd; int main() { simd::vec str = "Hello World"; std::println("{}", str); std::println("{::d}", str == 'l'); return 0; }

The first part of std::simd just landed in #GCC 16: https://forge.sourceware.org/gcc/gcc-mirror/commit/8be0893fd98c9a89bbcd81e0ff8ebae60841d062
Expect it on Compiler Explorer in β€” I guess β€” 12 hours.

#simd #wg21 #cpp #cpp26 #cplusplus

libstdc++: Implement [simd] for C++26 Β· 8be0893fd9

This implementation differs significantly from the std::experimental::simd implementation. One goal was a reduction in template instantiations wrt. what std::experimental::simd did. Design notes: - bits/vec_ops.h contains concepts, traits, and functions for working with GNU vector builtins t...

Sourceware Forge: Core Toolchain and Developer Tools

Static reflection is coming to C++26 πŸš€ Learn with Koen Samyn how to use it today to build zero-overhead, reflection-driven OpenGL & ImGui pipelinesβ€”and eliminate common graphics bugs.

πŸ—“ Apr 2 or May 25
πŸ”—Find out more and register: https://cpponline.uk/workshop/splice-and-dice/

#cpp #cpp26 #coding

C++26 is bringing std::execution (Senders/Receivers) πŸ”₯

Learn to build async pipelines without manual synchronization in this hands-on online workshop with Mateusz Pusz.

Structured concurrency. Parallelism. Real-world usage.

πŸ—“ May 15
πŸ”—https://cpponline.uk/workshop/mastering-stdexecution-senders-receivers/

#cpp #cplusplus #cpp26

C++Online 2026 SESSION SPOTLIGHT: C++ Contracts - A Meaningfully Viable Product, Part II by Andrei Zissu

https://cpponline.uk/session/2026/cpp-contracts/

Register now at https://cpponline.uk/registration/

#cpp #cplusplus #Cpp26 #contracts

C++ Contracts - C++Online

After 2 full decades of multiple efforts aimed at introducing a contracts feature into the C++ language, the Contracts MVP (Minimal Viable Product) is on track to making it into C++26 – having already been voted into the C++26 Working Draft and with only one WG21 meeting left (in March in London, after C++ Online) […]

C++Online

C++Online 2026 SESSION SPOTLIGHT: When One Red Pill Is Not Enough - Compile-Time Optimization Through Dynamic Programming by Andrew Drakeford

https://cpponline.uk/session/2026/when-one-red-pill-is-not-enough/

Register now at https://cpponline.uk/registration/

#cpp #cplusplus #cpp26 #constexpr #algorithms

Static reflection is coming to C++26 πŸš€ Learn how to use it today to build zero-overhead, reflection-driven OpenGL & ImGui pipelinesβ€”and eliminate common graphics bugs.
πŸ—“ Apr 2 or May 25
πŸ”—Find out more and register:https://cpponline.uk/workshop/splice-and-dice/
#cpp #cpp26 #programming #coding

This conversation with @meetingcpp organizer Jens Weller reflects on highlights from Meeting C++ 2025 and the evolving C++ landscape - from Toyota’s open-source real-time work to the gap between C++20/C++26 adoption and continued industry use of C++11/17. #Cpp #Cpp20 #Cpp26 #SoftwareDevelopment #OpenSource

Watch the full interview:
https://www.youtube.com/watch?v=XESMSq1PEpI

Meeting C++: Trends, Standards, and Why Real-World C++ Talks Matter

YouTube

CLion 2025.3 Is Here, and It’s Epic: Faster Language Engine, Unique Constexpr Debugger, DAP Support, and Much More
#Clang #CLion #News #Releases #Clionnova #Constexpr #Cpp26 #Dap #Stm32 #Zephyrwest

https://blog.jetbrains.com/clion/2025/12/2025-3-release/

CLion 2025.3 Is Here, and It’s Epic: Faster Language Engine, Unique Constexpr Debugger, DAP Support, and Much More | The CLion Blog

This is one of our largest updates ever, featuring advanced capabilities and refinements to deliver a smoother workflow.

The JetBrains Blog
Virtual Trip Report: WG21 Kona 2025

After the CD (committee draft) is out, WG21 is in bug fixing mode. Consider NB comments as the tickets that force us to consider a resolution and provide an answer. Such issues can either be design issues or wording issues (where wording does not match stated design intent). Besides NB comments, many library issues had been filed and prioritized independently, which led to several categorized as must/should fix before the standard is finalized.

Vir’s blog β€” go fast with readable code!