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.