From: Gabor Greif Date: Thu, 12 Mar 2009 09:47:03 +0000 (+0000) Subject: minor tweaks X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0cbcabedc5f69f335d7fee5f23970e0820d8da99;p=oota-llvm.git minor tweaks git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66788 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 47a982924c3..a990462c253 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -247,10 +247,9 @@ reference - an excellent reference for the STL and other parts of the standard C++ library.
  • 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.
  • +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
  • @@ -890,11 +889,12 @@ prev/next pointers for the list.

    requires an ilist_traits implementation for the element type, but it provides some novel characteristics. In particular, it can efficiently store polymorphic objects, the traits class is informed when an element is inserted or -removed from the list, and ilists are guaranteed to support a constant-time splice -operation.

    +removed from the list, and ilists are guaranteed to support a +constant-time splice operation.

    -

    These properties are exactly what we want for things like Instructions -and basic blocks, which is why these are implemented with ilists.

    +

    These properties are exactly what we want for things like +Instructions and basic blocks, which is why these are implemented with +ilists.

    Related classes of interest are explained in the following subsections: