From 94761b9dba141852f1e8a33da83802c0baba38d0 Mon Sep 17 00:00:00 2001 From: Renato Golin Date: Wed, 27 Jul 2022 10:29:19 +0100 Subject: [PATCH] Update ProgrammersManual STL docs The SGI page doesn't exist anymore and isn't really relevant at this day and age. While at it, added the "other" main C++ website and moved all URLs to HTTPS. --- llvm/docs/ProgrammersManual.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 39219ad1d2b6..f0c0d7c4ffa5 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -56,26 +56,26 @@ the subject that you can get, so it will not be discussed in this document. Here are some useful links: #. `cppreference.com - `_ - an excellent + `_ - an excellent reference for the STL and other parts of the standard C++ library. +#. `cplusplus.com + `_ - another excellent + reference like the one above. + #. `C++ In a Nutshell `_ - This is an O'Reilly book in the making. It has a decent Standard Library Reference that rivals Dinkumware's, and is unfortunately no longer free since the book has been published. -#. `C++ Frequently Asked Questions `_. - -#. `SGI's STL Programmer's Guide `_ - Contains a - useful `Introduction to the STL - `_. +#. `C++ Frequently Asked Questions `_. #. `Bjarne Stroustrup's C++ Page - `_. + `_. -#. `Bruce Eckel's Thinking in C++, 2nd ed. Volume 2 Revision 4.0 +#. `Bruce Eckel's Thinking in C++, 2nd ed. Volume 2. (even better, get the book) - `_. + `_. You are also encouraged to take a look at the :doc:`LLVM Coding Standards ` guide which focuses on how to write maintainable code more