OSDN Git Service

From Charles Brockman <mr hyphen chuck at att dot net>:
authorkseitz <kseitz>
Tue, 14 Jun 2005 00:19:39 +0000 (00:19 +0000)
committerkseitz <kseitz>
Tue, 14 Jun 2005 00:19:39 +0000 (00:19 +0000)
        * library/interface.tcl (gdbtk_tcl_warning): Filter "RTTI symbol not found"
        "warnings", too.

gdb/gdbtk/ChangeLog
gdb/gdbtk/library/interface.tcl

index b7129f0..c8bfd2e 100644 (file)
@@ -1,3 +1,9 @@
+2005-06-13  Keith Seitz  <keiths@redhat.com>
+
+       From Charles Brockman <mr hyphen chuck at att dot net>:
+       * library/interface.tcl (gdbtk_tcl_warning): Filter "RTTI symbol not found"
+       "warnings", too.
+
 2005-06-06  Keith Seitz  <keiths@redhat.com>
 
        * library/interface.tcl (gdbtk_tcl_fputs_error): gdbtk_state is in the global
index 38a7e21..18ca4e0 100644 (file)
@@ -367,6 +367,7 @@ proc gdbtk_tcl_warning {message} {
         "Unable to find dynamic linker breakpoint function.*" {return}
        "Internal error.*" { gdbtk_tcl_fputs_error $message }
         "incomplete CFI.*" { gdbtk_tcl_fputs_error $message }
+       "RTTI symbol not found for class.*" { gdbtk_tcl_fputs_error $message }
         default {show_warning $message}
        }
 }