From 4e3b84127705d09cec2f08299a1eada9dd87a012 Mon Sep 17 00:00:00 2001 From: Morgan Creekmore Date: Thu, 5 Sep 2019 17:27:25 -0500 Subject: [PATCH 1/3] Add vcpkg to package managers --- 02-Use_the_Tools_Available.md | 1 + 1 file changed, 1 insertion(+) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index c635a3b..5fe0bc3 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -47,6 +47,7 @@ Package management is an important topic in C++, with currently no clear winner. * [qpm](https://www.qpm.io/) - Package manager for Qt * [build2](https://build2.org/) - cargo-like package management for C++ * [Buckaroo](https://buckaroo.pm) - Truly decentralized cross-platform dependency manager for C/C++ and more + * [Vcpkg](https://github.com/microsoft/vcpkg) - C++ Library Manager for Windows, Linux, and MacOS ## Continuous Integration From 71aaf01ed6120022fc0c8267c14fec4a57ad2667 Mon Sep 17 00:00:00 2001 From: Nikita S Date: Tue, 17 Sep 2019 13:54:53 +0300 Subject: [PATCH 2/3] added vcpkg library manager to Tools section --- 02-Use_the_Tools_Available.md | 1 + 1 file changed, 1 insertion(+) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index c635a3b..ca456ab 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -47,6 +47,7 @@ Package management is an important topic in C++, with currently no clear winner. * [qpm](https://www.qpm.io/) - Package manager for Qt * [build2](https://build2.org/) - cargo-like package management for C++ * [Buckaroo](https://buckaroo.pm) - Truly decentralized cross-platform dependency manager for C/C++ and more + * [vcpkg](https://github.com/microsoft/vcpkg) - Microsoft cross-platform library manager, could be used with CMake ## Continuous Integration From f4be7216521df4342221232860bd505395834f6d Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Sun, 3 Nov 2019 14:17:38 +0000 Subject: [PATCH 3/3] rmf.io is dead --- 03-Style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03-Style.md b/03-Style.md index 277640a..241f5c7 100644 --- a/03-Style.md +++ b/03-Style.md @@ -453,5 +453,5 @@ The Rule of Zero states that you do not provide any of the functions that the co The goal is to let the compiler provide optimal versions that are automatically maintained when more member variables are added. -The [original article](https://rmf.io/cxx11/rule-of-zero) provides the background, while a [follow up article](http://www.nirfriedman.com/2015/06/27/cpp-rule-of-zero/) explains techniques for implementing nearly 100% of the time. +[This article](http://www.nirfriedman.com/2015/06/27/cpp-rule-of-zero/) provides a background and explains techniques for implementing nearly 100% of the time.