cpp-style: removed 'not implemented'
There was a 'not implemented' statement about some of the CI testing
which has actually been in place for years. Update the document to
catch it up to the current state of the art.
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I4d955801a7dae1b2e16eb2bb36603b6956801e10
diff --git a/cpp-style-and-conventions.md b/cpp-style-and-conventions.md
index eaeb7c5..51b1312 100644
--- a/cpp-style-and-conventions.md
+++ b/cpp-style-and-conventions.md
@@ -41,11 +41,11 @@
practices by the language designers. This is reflected by the choice in
following the C++ Core Guidelines.
-[[Not currently implemented]] We finally desire to have computers do our
-thinking for us wherever possible. This means having Continuous Integration
-tests on each repository so that regressions are quickly identified prior to
-merge. It also means having as much of this document enforced by tools as
-possible by, for example, clang-format and clang-tidy.
+We finally desire to have computers do our thinking for us wherever possible.
+This means having Continuous Integration tests on each repository so that
+regressions are quickly identified prior to merge. It also means having as
+much of this document enforced by tools as possible by, for example,
+clang-format and clang-tidy.
For those coming to the project from pre-C++11 environments we strongly
recommend the book "Effective Modern C++" as a way to get up to speed on the