X-Git-Url: https://repo.jachan.dev/binutils.git/blobdiff_plain/062534d44f3eeb81903cc01ef0230cee5b3e4eb2..66d7f48f8045adf266046df7ceb84161d5678cfa:/gdb/python/py-lazy-string.c diff --git a/gdb/python/py-lazy-string.c b/gdb/python/py-lazy-string.c index aaee94f5e1..69b1bc52ab 100644 --- a/gdb/python/py-lazy-string.c +++ b/gdb/python/py-lazy-string.c @@ -1,6 +1,6 @@ /* Python interface to lazy strings. - Copyright (C) 2010-2020 Free Software Foundation, Inc. + Copyright (C) 2010-2022 Free Software Foundation, Inc. This file is part of GDB. @@ -24,7 +24,7 @@ #include "valprint.h" #include "language.h" -typedef struct { +struct lazy_string_object { PyObject_HEAD /* Holds the address of the lazy string. */ @@ -51,7 +51,7 @@ typedef struct { This is recorded as a PyObject so that we take advantage of support for preserving the type should its owning objfile go away. */ PyObject *type; -} lazy_string_object; +}; extern PyTypeObject lazy_string_object_type CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("lazy_string_object");