int val = 2;
auto v = std::vector{1,2,3};
if (v.size() > val) {
/// ...;
}


C++26 Committee Draft is open for comments
⇒ like, share, follow, subscribe
Also on r/cpp 🙏
Change of plans
Mid / End of November
Submit your ideas and suggestions

Tell us what you want to hear or want to do


int val = 2;
auto v = std::vector{1,2,3};
if (v.size() > val) {
/// ...;
}Use -Wall -Werror or /W4 /WX
int val = 2;
auto v = std::vector{1,2,3};
if (v.size() > val) {
/// ...;
}warning: comparison of
integer expressions of different signedness
long unsigned int and 'int' [-Wsign-compare]
if (v.size() > val) {
int val = 2;
auto v = std::vector{1,2,3};
if (std::_____(v) > val) {
/// ...;
}
int val = 2;
auto v = std::vector{1,2,3};
if (std::ssize(v) > val) {
/// ...;
}
since C++20
Arvid: Premature generalization
Björn: This is a pipe, but should it be
Harald: Some tips for the everyday CMake user
🍹 🍕 Mingle 🍕 🍻
Daniela: Towards Safety and Security in C++26
Väl mött!