From d4c31f80cc7072b6c7b47081e5dd46b5963cc48c Mon Sep 17 00:00:00 2001 From: Ben Cottrell <43001397+ben-cottrell-nz@users.noreply.github.com> Date: Mon, 27 Jan 2025 18:32:26 +1300 Subject: [PATCH] Update README.md Added abseil and cppcheck --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 30bd0cd..6ad35c4 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ A list of actually decent, actually used AND appreciated in the industry C++ lib ## Frameworks * [Boost](http://www.boost.org/) - One of the most highly regarded and expertly designed C++ library projects in the world. +* [abseil](https://abseil.io/) - A set of libraries used by Google, which provide abstractions for newer versions of the STL. Backwards compatible to C++11. ## Benchmarking * [Nonius](https://nonius.io/) - A C++ micro-benchmarking framework. @@ -23,6 +24,7 @@ A list of actually decent, actually used AND appreciated in the industry C++ lib * [Clang-Format](http://clang.llvm.org/docs/ClangFormat.html) - Highly integratable C/C++/Java/JavaScript/Objective-C/Protobuf code formatter from the Clang team. * [valgrind](http://valgrind.org/) - A programming tool for memory debugging, memory leak detection, and profiling. * [MSYS2](https://msys2.github.io/) - provide support to facilitate using the bash shell, Autotools, revision control systems and the like for building native Windows applications using MinGW-w64 toolchains. +* [cppcheck](http://cppcheck.sourceforge.net/) - A static checker for leading memory bugs, which may be missed at compile time. ### Online compilers * [Coliru](http://coliru.stacked-crooked.com/) - Compile, link, run.