diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-26 19:14:12 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-26 19:14:12 (GMT) |
commit | 6baa4c4cc6d303bfdac7c6fd21371f3bc48c7e06 (patch) | |
tree | 16ac764ea2e02dada18ee6269ed723ddcdd8e8e4 /Include/asdl.h | |
parent | 3591bbe4534d05631ace7b7e7b076c0cc52e7f13 (diff) | |
download | cpython-6baa4c4cc6d303bfdac7c6fd21371f3bc48c7e06.zip cpython-6baa4c4cc6d303bfdac7c6fd21371f3bc48c7e06.tar.gz cpython-6baa4c4cc6d303bfdac7c6fd21371f3bc48c7e06.tar.bz2 |
Whoops, fix build breakage. There were still a few uses of the bool type.
Remove the last few uses of bool/true/false.
Diffstat (limited to 'Include/asdl.h')
-rw-r--r-- | Include/asdl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/asdl.h b/Include/asdl.h index 84e837e..9bb0697 100644 --- a/Include/asdl.h +++ b/Include/asdl.h @@ -5,10 +5,6 @@ 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 at this stage. So, for example, I'll represent identifiers as |