Posts by this author

Mar 6, 2023
Post comments count2
Post likes count1

std::string now supports Address Sanitizer

The standard library now checks for more incorrect usage using the ASan "container overflow" feature in `std::string`.

C++New Feature
May 24, 2021
Post comments count0
Post likes count0

How to start using registries with vcpkg

For many users of vcpkg, the built-in repository of packages is completely sufficient. If you only need public, non-experimental libraries, the default vcpkg registry is completely fine. However, once you go outside of this world - once you have company-internal libraries, or you want to use experimental libraries, the recommended solution is to us...

C++