diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-04-14 15:45:15 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-04-14 15:47:36 +0200 |
commit | 8c22352e885986096f0293bddf57feddbdeac335 (patch) | |
tree | 107c7791a7f74f60ef5addd8ceb0c1e7a153d243 /phpdbg_watch.h | |
parent | fdd9bc20507f04bdcdeb963a26a9334409885c5c (diff) | |
download | php-git-8c22352e885986096f0293bddf57feddbdeac335.tar.gz |
Added $this and superglobals support for watchpoints
Diffstat (limited to 'phpdbg_watch.h')
-rw-r--r-- | phpdbg_watch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_watch.h b/phpdbg_watch.h index 7c3a160034..d00bcff77e 100644 --- a/phpdbg_watch.h +++ b/phpdbg_watch.h @@ -56,8 +56,8 @@ typedef enum { } phpdbg_watchtype; -#define PHPDBG_WATCH_SIMPLE 0 -#define PHPDBG_WATCH_RECURSIVE 1 +#define PHPDBG_WATCH_SIMPLE 0x0 +#define PHPDBG_WATCH_RECURSIVE 0x1 typedef struct _phpdbg_watchpoint_t phpdbg_watchpoint_t; |