From 55ed7eb6ccbcf51dd7607c6fb3e529b3736da22a Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 18 May 2001 18:35:19 +0000 Subject: [PATCH] Oops, #ifndef instead of #ifdef --- panda/src/graph/wrt.I | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/graph/wrt.I b/panda/src/graph/wrt.I index 9a395890e1..f526d164ba 100644 --- a/panda/src/graph/wrt.I +++ b/panda/src/graph/wrt.I @@ -252,7 +252,7 @@ get_cached_net_transition(const Node *node, } if (parent_arc == (NodeRelation *)NULL) { -#ifndef NOTIFY_DEBUG +#ifdef NOTIFY_DEBUG // No, it wasn't mentioned. Issue a warning and use the first // one. describe_ambiguous_wrt(node, arc_list_begin, arc_list_end, graph_type); @@ -344,7 +344,7 @@ get_uncached_net_transition(const Node *node, } if (parent_arc == (NodeRelation *)NULL) { -#ifndef NOTIFY_DEBUG +#ifdef NOTIFY_DEBUG // No, it wasn't mentioned. Issue a warning and use the first // one. describe_ambiguous_wrt(node, arc_list_begin, arc_list_end, graph_type);