diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-30 16:08:30 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-30 16:08:30 -0500 |
commit | 42b7d204b25265a3df6b8f9443cb840306b33a08 (patch) | |
tree | 252a133fc09bec2a10301c4d75ab666bdabc787c /coverage/ctracer/tracer.h | |
parent | 58d4c073a8ab0c7b5d2ca1d700e77729a07e3aa7 (diff) | |
download | python-coveragepy-git-42b7d204b25265a3df6b8f9443cb840306b33a08.tar.gz |
Make a BOOL type for the C code.
Diffstat (limited to 'coverage/ctracer/tracer.h')
-rw-r--r-- | coverage/ctracer/tracer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/ctracer/tracer.h b/coverage/ctracer/tracer.h index 7769b2c2..438317b0 100644 --- a/coverage/ctracer/tracer.h +++ b/coverage/ctracer/tracer.h @@ -30,9 +30,9 @@ typedef struct CTracer { PyObject * context; /* Has the tracer been started? */ - int started; + BOOL started; /* Are we tracing arcs, or just lines? */ - int tracing_arcs; + BOOL tracing_arcs; /* The data stack is a stack of dictionaries. Each dictionary collects |