Search
1000 results for “cpp”
-
Bridging __VA_ARGS__ to C++ variadic templates
https://mortoray.com/2013/11/01/bridging-__va_args__-to-c-variadic-templates/
-
Write unit tests for C/C++ in Visual Studio
https://docs.microsoft.com/en-us/visualstudio/test/writing-unit-tests-for-c-cpp?view=vs-2019
-
Test-driven development and unit testing with examples in C++
-
Building a load-balanced task scheduler – Part 1: Basics
https://blog.molecular-matters.com/2012/04/05/building-a-load-balanced-task-scheduler-part-1-basics/
Building a load-balanced task scheduler – Part 2: Task model
Building a load-balanced task scheduler – Part 3: Parent-child relationships
Building a load-balanced task scheduler – Part 4: False sharing
-
Building your own unit-testing framework
#Cpp #UnitTest
#UnitTestingFramework
#GapryBlogReadingListhttp://cpp-tip-of-the-day.blogspot.com/2015/09/building-your-own-unit-testing-framework.html
-
Developing a C++ Unit Testing Framework
-
How to Write a Minimal Unit Testing Framework in C++
#Cpp #UnitTest
#UnitTestingFramework
#GapryBlogReadingListhttps://levelup.gitconnected.com/how-to-write-a-minimal-unit-testing-framework-in-c-fd5f3094e360
-
Why LLVM is so slow. And why Koka is faster than C++. My post.
-
Kung tunay ngang no-threat na ang #CPP #NPA #NDF why won't the #army and #airforce sacrifice their bloated budgets so we could focus on modernizing our #navy and #coastguard? You know, to effectively counter the #Chinese threat? :sagume_think:
There are only two conclusions to be drawn here: either the #AFP is lying (again) about our local #Maoists' capabilities, or they are scamming the #Filipino #taxpayers out of their hard-earned money. :seija_coffee:
RE: https://makai.chaotic.ninja/notes/9rjtq0celd -
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
Unlock the Power of Parallel Computing With SWAR (SIMD Within A Register) – Jamie Pond – C++ on Sea
-
So, You Want to Use C++ Modules … Cross-Platform? – by @DanielaKEngert – C++ on Sea 2023
https://www.youtube.com/watch?v=DJTEUFRslbI
#clang #cpp #cppmodules #gcc #MSBuild #programming -
“The Two Factions Of C++”, Mond (https://herecomesthemoon.net/2024/11/two-factions-of-cpp/).
On HN: https://news.ycombinator.com/item?id=42231489
On Lobsters: https://lobste.rs/s/owmlgx/two_factions_c
On /r/cpp: https://old.reddit.com/r/cpp/comments/1gyxhss/the_two_factions_of_c/
#CPP #CPlusPlus #ABI #BackwardCompatibility #Standards #Compatibility
-
Working in the city library today 🤩 Some basic math library.
#cpp #programming #raytracer #PlusPlusPixel -
TIL about Construct, a Matrix server written in C++ that targets single or few-user instances.
It has little activity, but at least the fact it's in C++ means it's a project whose code I can actually read. I'll probably at least try it out at some point. :blobfoxhappymlem:
-
I finally finished my blog post on how to use C/C++ package managers with SCons and integrating third-party libraries into your projects. This can be useful for all Godot GDExtension users wanting to integrate a library in C++
https://paddy-exe.github.io/posts/how-to-use-scons-with-cpp-package-managers/
-
After 20 years I did some C++ coding again to write a communication layer to my Samsung AC for an ESP.
I still wonder why C++ never get rid auf writing header files by hand. It feels so unnecessary compared to other languages.
I mean why not write only CPP files with export keywords and auto generate headers only when needed. #cpplang #cpp -
It was a lot of work to convert the std::vector to mmap(), but it's done now! Now I have a little problem with con/destruction, as is often the case in #cpp: when pushing smth to the stack I need to use the placement new:
sp --; new (sp) Expression{...};
Otherwise operator= tries to destruct the dummy-initialized std::string inside Expression.
And also I need to destruct Expression if I don't want memory leaks from the constructed std::string. -
Has scientists figured out yet how to get clang-format to not bizarrely try to align chained methods? #cpp #clang #llvm #clangformat #cplusplus #programming
-
Has scientists figured out yet how to get clang-format to not bizarrely try to align chained methods? #cpp #clang #llvm #clangformat #cplusplus #programming
-
Has scientists figured out yet how to get clang-format to not bizarrely try to align chained methods? #cpp #clang #llvm #clangformat #cplusplus #programming
-
@deezo nope, same result. clang-format seems to see some structure in this aggregate with designated initializers that tips the formatter over. Its a LLVM based style, minor adjustments for lambdas. #cpp #ClangFormat