These are public posts tagged with #cplusplus. You can interact with them if you have an account anywhere in the fediverse.
I will be speaking at Meeting C++ 2025! The talk's title is "Embedded-Friendly C++: Features That Make a Difference". Come and join me there!
#CppPollOfToday: Do you use AI Tooling in your work for coding C++?
https://meetingcpp.com/mcpp/survey/?q=94
#cplusplus
#cpp
Book of the Day: Notebook C++: Tips and Tricks with Templates by Andreas Fertig
https://meetingcpp.com/mcpp/books/book.php?hash=0292a4851803cd5a06771cabfe0729aea6b03aa2
#cplusplus
#cpp
One of the problems that C++ programmers face using…
meetingcpp.comI spent all day digging into code to discover and fix this issue.
auto make_func(int v) {
auto f1 = [&] { return v; }; // OK
auto f2 = [=] { return f1(); }; // OK
return f2; // DANGER (has reference to local `v`)
}
int main() {
auto f = make_func(42);
return f();
}
I'm glad I found it, but is there any tooling that would save future me from spending so much time?
Meeting C++ 2025 featured talk of the day: andrew drakeford - The Missing Step: Making Data Oriented Design One Million Times Faster
https://meetingcpp.com/mcpp/schedule/talkview.php?th=60f831827b3cc25a7210c20d67e4992e08775601
#meetingcpp
#cpp
#cplusplus
Data-oriented design (DOD) has gained traction for…
meetingcpp.comJonas Minnberg: Things Programmers Have Said
https://www.youtube.com/watch?v=p8W4NCTkhI0
#cpp
#cplusplus
Enjoy the videos and music you love, upload original…
www.youtube.comI would rather NOT rewrite our .zip archive code to do the «unpack in separate directory and then remove» thing. So does anybody know of a different C++ library to access zip archive contents directly that DOES support #Zip64?
#CppPollOfToday: Which C++ Standards do you use the most at work currently?
https://meetingcpp.com/mcpp/survey/?q=22
#cplusplus
#cpp
#296 Given the following in C++
void f(){
// Assuming LP 64
auto a = 42, b = 3000000000; // Well-formed?
}
Without checking is this valid?
A. Yes
B. No
C. Show me the results
What happens if C++/WinRT is unable to resume execution on a dispatcher thread?
https://devblogs.microsoft.com/oldnewthing/20250721-00/?p=111396
#cpp
#cplusplus
What you get out of the box.
The Old New ThingMeeting C++ 2025 featured talk of the day: Erik Tomusk - Does my C++ Object Model Work with a GPU, and Can I Make It “Safe”?
https://meetingcpp.com/mcpp/schedule/talkview.php?th=149a1c74b6622c1d1a049475b8d832d467ea39ce
#meetingcpp
#cpp
#cplusplus
The object model is one of the defining features of…
meetingcpp.comBook of the Day: Secure Coding in C and C++ by Robert C. Seacord
https://meetingcpp.com/mcpp/books/book.php?hash=46e52215a197434cc983fa63521e1749bb7c1509
#cplusplus
#cpp
Secure Coding in C and C++, Second Edition, identifies…
meetingcpp.comC++ Weekly - Ep 490 - std::ignore vs _ vs [[maybe_unused]]
https://www.youtube.com/watch?v=iUcS0LCj2Ko
#cpp
#cplusplus