From a3e9f7d306a14bed4dd0f6717b46d8b0e3a0d646 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 31 Jul 2008 07:55:46 +0000 Subject: fix conflicting names "true" and "false" --- src/os/unix/ngx_atomic.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/os') diff --git a/src/os/unix/ngx_atomic.h b/src/os/unix/ngx_atomic.h index 22b8b0144..e19fddaca 100644 --- a/src/os/unix/ngx_atomic.h +++ b/src/os/unix/ngx_atomic.h @@ -21,13 +21,8 @@ #include -/* "bool" conflicts with perl's CORE/handy.h - * "true" and "false" conflict with nginx, and of course we can rename them, - * but we need to undef "bool" anyway - */ +/* "bool" conflicts with perl's CORE/handy.h */ #undef bool -#undef true -#undef false #define NGX_HAVE_ATOMIC_OPS 1 -- cgit