monica_b1998@lemmy.world to C++@discuss.tchncs.deEnglish · 14 days agoReport from the Croydon 2026 ISO C++ Committee meeting - mp-unitsmpusz.github.ioexternal-linkmessage-square2linkfedilinkarrow-up11arrow-down11
arrow-up10arrow-down1external-linkReport from the Croydon 2026 ISO C++ Committee meeting - mp-unitsmpusz.github.iomonica_b1998@lemmy.world to C++@discuss.tchncs.deEnglish · 14 days agomessage-square2linkfedilink
minus-squarecmeerwlinkfedilinkEnglisharrow-up1·13 days agoThe main reason for the template keyword in the syntax is because the block is first parsed as a template, and then instantiated. This means you might have to use typename or template keywords in your code now.
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.