Commit 45e50de1 authored by Victor Stinner's avatar Victor Stinner

Try to fix compilation of Python-ast.c on Visual Studio 2008

parent cc50ba26
...@@ -604,7 +604,7 @@ class PyTypesVisitor(PickleVisitor): ...@@ -604,7 +604,7 @@ class PyTypesVisitor(PickleVisitor):
def visitModule(self, mod): def visitModule(self, mod):
self.emit(""" self.emit("""
typedef struct { typedef struct {
PyObject_HEAD; PyObject_HEAD
PyObject *dict; PyObject *dict;
} AST_object; } AST_object;
......
...@@ -456,7 +456,7 @@ static char *withitem_fields[]={ ...@@ -456,7 +456,7 @@ static char *withitem_fields[]={
typedef struct { typedef struct {
PyObject_HEAD; PyObject_HEAD
PyObject *dict; PyObject *dict;
} AST_object; } AST_object;
......
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