void doStuff(int val){
std::print("Here {}", val);
}
int main() {
doStuff(23);
doStuff(23.3);
}


Next ISO meeting: 16. June Sofia
P3704R0, What are profiles
P3412R2, String Interpolation
other SIS News

⇒ like, share, follow, subscribe
21 August
29 September (OBS! Monday)
Submit your ideas and suggestions

Tell us what you want to hear or want to do


This should not compile.
-Werror is one answer, what is the other?
void doStuff(int val){
std::print("Here {}", val);
}
int main() {
doStuff(23);
doStuff(23.3);
}
void doStuff(int val){
std::print("Here {}", val);
}
void doStuff(auto) = delete;
int main() {
doStuff(23);
doStuff(23.3); //error: use of deleted function
}
Lightning talks
🍹 🍕 Mingle 🍕 🍻
More Lightning talks
Väl mött!