Commit c62c0b9a authored by Anthony Baxter's avatar Anthony Baxter

C++ already defines a perfectly good 'bool'. Use that.

parent ed7a4415
......@@ -5,7 +5,9 @@ typedef PyObject * identifier;
typedef PyObject * string;
typedef PyObject * object;
#ifndef __cplusplus
typedef enum {false, true} bool;
#endif
/* It would be nice if the code generated by asdl_c.py was completely
independent of Python, but it is a goal the requires too much 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