diff options
author | Tom Tromey <tromey@redhat.com> | 2010-02-17 20:08:24 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-02-17 20:08:24 +0000 |
commit | 4eef138c304c2a628b2d626a701c0807e48d1bfa (patch) | |
tree | 8c881f5377e2c3a3c15457b3760ee93b801e4458 /gdb/NEWS | |
parent | 548a926afa44671171f9b10cfe6ef9b8bfbc32d0 (diff) | |
download | gdb-4eef138c304c2a628b2d626a701c0807e48d1bfa.zip gdb-4eef138c304c2a628b2d626a701c0807e48d1bfa.tar.gz gdb-4eef138c304c2a628b2d626a701c0807e48d1bfa.tar.bz2 |
* NEWS: Add C++ improvements section.
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -3,7 +3,9 @@ *** Changes since GDB 7.0 -* Namespace Support +* C++ Improvements + + ** Namespace Support GDB now supports importing of namespaces in C++. This enables the user to inspect variables from imported namespaces. Support for @@ -11,6 +13,17 @@ aliased in the current scope (e.g. namepace C=A; ) the user can print variables using the alias (e.g. (gdb) print C::x). + ** Bug Fixes + + All known bugs relating to the printing of virtual base class were + fixed. It is now possible to call overloaded static methods using a + qualified name. + + ** Cast Operators + + The C++ cast operators static_cast<>, dynamic_cast<>, const_cast<>, + and reinterpret_cast<> are now handled by the C++ expression parser. + * New targets Xilinx MicroBlaze microblaze-*-* |