Report from the Croydon 2026 ISO C++ Committee meeting - mp-units
https://mpusz.github.io/mp-units/HEAD/blog/2026/03/28/report-from-the-croydon-2026-iso-c-committee-meetingOpen linkView original on lemmy.worldSyndicated from the fediverse. Read and engage on the original instance.
View original on lemmy.world
https://mpusz.github.io/mp-units/HEAD/blog/2026/03/28/report-from-the-croydon-2026-iso-c-committee-meetingOpen linkView original on lemmy.world
2 replies
I was waiting for the expansion statements. I just wonder why they decided on the syntax
template forinstead offor constexprorfor consteval. Would be much more consistent IMO.The main reason for the
templatekeyword in the syntax is because the block is first parsed as a template, and then instantiated. This means you might have to usetypenameortemplatekeywords in your code now.