From 04af7bfdd82243f0692ec6ac70696864a5b0aed0 Mon Sep 17 00:00:00 2001 From: levine Date: Fri, 12 Jun 1998 14:41:22 +0000 Subject: (instance): wrap declaration of local "assertion" with ifndef ACE_NDEBUG, to avoid warning about unused variable with debug=0. --- ace/Malloc.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'ace/Malloc.cpp') diff --git a/ace/Malloc.cpp b/ace/Malloc.cpp index 8cc622a7c00..9deaf271f0b 100644 --- a/ace/Malloc.cpp +++ b/ace/Malloc.cpp @@ -91,11 +91,13 @@ ACE_Allocator::instance (void) static void *allocator_instance = 0; // Check this critical assumption. - // We put it in a variable first to avoid stupid compiler - // warnings that the condition may always be true/false. + // We put it in a variable first to avoid stupid compiler + // warnings that the condition may always be true/false. +# if !defined (ACE_NDEBUG) int assertion = (sizeof allocator_instance == - sizeof (ACE_New_Allocator)); + sizeof (ACE_New_Allocator)); ACE_ASSERT (assertion); +# endif /* !ACE_NDEBUG */ // Initialize the allocator_instance by using a placement // new. The ACE_NEW_RETURN below doesn't actually allocate -- cgit v1.2.1