Commit 692dba24 authored by Sandro Tosi's avatar Sandro Tosi

#12670: Fix struct code after forward declaration on ctypes doc

parent ef5c7161
...@@ -865,10 +865,10 @@ later:: ...@@ -865,10 +865,10 @@ later::
struct cell; /* forward declaration */ struct cell; /* forward declaration */
struct { struct cell {
char *name; char *name;
struct cell *next; struct cell *next;
} cell; };
The straightforward translation into ctypes code would be this, but it does not The straightforward translation into ctypes code would be this, but it does not
work:: work::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment