Add cast in python.c
[deliverable/binutils-gdb.git] / gdb / typeprint.c
index 8fbd1789a89f4ad62bd6440d04ddb19c1bf160d4..377223a4711d65e1c169b49451e7b61944e3cac3 100644 (file)
@@ -727,3 +727,20 @@ Show printing of typedefs defined in classes."), NULL,
                           show_print_type_typedefs,
                           &setprinttypelist, &showprinttypelist);
 }
+
+/* Print <not allocated> status to stream STREAM.  */
+
+void
+val_print_not_allocated (struct ui_file *stream)
+{
+  fprintf_filtered (stream, _("<not allocated>"));
+}
+
+/* Print <not associated> status to stream STREAM.  */
+
+void
+val_print_not_associated (struct ui_file *stream)
+{
+  fprintf_filtered (stream, _("<not associated>"));
+}
+
This page took 0.024434 seconds and 4 git commands to generate.