From 48c7451eee86af2330a590d92d8f179b0d08a23f Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 10 Jan 2014 14:30:32 +0000 Subject: [PATCH] re PR libstdc++/59699 (Effective C++ has moved) PR libstdc++/59699 * doc/xml/manual/support.xml (std.support.types.null): Update links. From-SVN: r206526 --- libstdc++-v3/ChangeLog | 3 +++ libstdc++-v3/doc/xml/manual/support.xml | 12 +++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e93c322bf85..78d99829759 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -11,6 +11,9 @@ * doc/xml/manual/backwards_compatibility.xml (backwards.third.nocreate_noreplace): Correct and expand. + PR libstdc++/59699 + * doc/xml/manual/support.xml (std.support.types.null): Update links. + 2014-01-09 Jonathan Wakely PR libstdc++/59738 diff --git a/libstdc++-v3/doc/xml/manual/support.xml b/libstdc++-v3/doc/xml/manual/support.xml index 4d33a46f4a0..410f7140347 100644 --- a/libstdc++-v3/doc/xml/manual/support.xml +++ b/libstdc++-v3/doc/xml/manual/support.xml @@ -169,16 +169,18 @@ NULL is always a pointer.) - In his book Effective - C++, Scott Meyers points out that the best way + In his book Effective + C++, Scott Meyers points out that the best way to solve this problem is to not overload on pointer-vs-integer types to begin with. He also offers a way to make your own magic NULL that will match pointers before it matches integers. - See - the - Effective C++ CD example + See the + Effective + C++ CD example.