X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcase.h;h=e89cb44eb3f60e6e8071fa66a3d8a774feeee485;hb=5fd22ca7771c8175ef05e91e1194c3c4096337f4;hp=6f6abeb50938a67f10c710a3d38ddeea59669c5d;hpb=2322678e8fddbbf158b01b2720db2636404bba3b;p=pspp-builds.git diff --git a/src/data/case.h b/src/data/case.h index 6f6abeb5..e89cb44e 100644 --- a/src/data/case.h +++ b/src/data/case.h @@ -30,7 +30,7 @@ struct ccase { struct case_data *case_data; /* Actual data. */ -#if GLOBAL_DEBUGGING +#if DEBUGGING struct ccase *this; /* Detects unauthorized move/copy. */ #endif }; @@ -43,7 +43,7 @@ struct case_data union value values[1]; /* Values. */ }; -#ifdef GLOBAL_DEBUGGING +#ifdef DEBUGGING #define CASE_INLINE #else #define CASE_INLINE static @@ -89,7 +89,7 @@ union value *case_data_all_rw (struct ccase *); void case_unshare (struct ccase *); -#ifndef GLOBAL_DEBUGGING +#ifndef DEBUGGING #include #include "str.h" @@ -183,6 +183,6 @@ case_data_rw (struct ccase *c, size_t idx) case_unshare (c); return &c->case_data->values[idx]; } -#endif /* !GLOBAL_DEBUGGING */ +#endif /* !DEBUGGING */ #endif /* case.h */