From 4656f5c643397db4cad85a7a2d2da43d7e71a828 Mon Sep 17 00:00:00 2001 From: Sami Wagiaalla Date: Fri, 25 Jun 2010 18:19:31 +0000 Subject: [PATCH] Added NEWS entry about C++ improvements. --- gdb/NEWS | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gdb/NEWS b/gdb/NEWS index 1e1ea39eac..b286f1c0cb 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -3,6 +3,35 @@ *** Changes since GDB 7.1 +* C++ Improvements: + + ** Argument Dependent Lookup (ADL) + + In C++ ADL lookup directs function search to the namespaces of its + arguments even if the namespace has not been imported. + For example: + namespace A + { + class B { }; + void foo (B) { } + } + ... + A::B b + foo(b) + Here the compiler will search for `foo' in the namespace of 'b' + and find A::foo. GDB now supports this. This construct is commonly + used in the Standard Template Library for operators. + + ** Improved User Defined Operator Support + + In addition to member operators, GDB now supports lookup of operators + defined in a namespace and imported with a `using' directive, operators + defined in the global scope, operators imported implicitly from an + anonymous namespace, and the ADL operators mentioned in the previous + entry. + GDB now also supports proper overload resolution for all the previously + mentioned flavors of operators. + * Windows Thread Information Block access. On Windows targets, GDB now supports displaying the Windows Thread