Cleanup: remove _DEBUG define usage

This commit is contained in:
2014-08-27 18:57:53 +10:00
parent 146ed67d55
commit 3f2cf6da6f
10 changed files with 21 additions and 21 deletions

View File

@@ -194,7 +194,7 @@ setCurrentDisplaySetting(
fprintf(stderr, "Error: XF86VidMode extension missing!\n");
return GHOST_kFailure;
}
# ifdef _DEBUG
# ifdef DEBUG
printf("Using XFree86-VidModeExtension Version %d.%d\n",
majorVersion, minorVersion);
# endif
@@ -240,7 +240,7 @@ setCurrentDisplaySetting(
}
if (best_fit != -1) {
# ifdef _DEBUG
# ifdef DEBUG
printf("Switching to video mode %dx%d %dx%d %d\n",
vidmodes[best_fit]->hdisplay, vidmodes[best_fit]->vdisplay,
vidmodes[best_fit]->htotal, vidmodes[best_fit]->vtotal,

View File

@@ -37,7 +37,7 @@
#include <shlobj.h>
#include "utfconv.h"
#if defined(__MINGW32__) || defined(__CYGWIN__)
#ifdef __MINGW32__
#if !defined(SHARD_PIDL)
#define SHARD_PIDL 0x00000001L

View File

@@ -32,7 +32,7 @@
#ifndef __GPU_BUFFERS_H__
#define __GPU_BUFFERS_H__
#ifdef _DEBUG
#ifdef DEBUG
/* #define DEBUG_VBO(X) printf(X)*/
# define DEBUG_VBO(X)
#else

View File

@@ -48,7 +48,7 @@ extern "C"
{
// The following prevents a linking error in debug mode for MSVC using the libs in CVS
#if defined(WITH_OPENEXR) && defined(_WIN32) && defined(_DEBUG) && !defined(__MINGW32__) && !defined(__CYGWIN__)
#if defined(WITH_OPENEXR) && defined(_WIN32) && defined(DEBUG) && !defined(__MINGW32__)
_CRTIMP void __cdecl _invalid_parameter_noinfo(void)
{
}

View File

@@ -21,13 +21,13 @@
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
#ifdef _DEBUG
#ifdef DEBUG
//int gRefCountExpr;
#endif
CExpression::CExpression()// : m_cached_calculate(NULL)
{
m_refcount = 1;
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountExpr++;
#endif
}

View File

@@ -116,7 +116,7 @@ public:
virtual CExpression * AddRef() { // please leave multiline, for debugger !!!
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountExpr++;
assertd(m_refcount < 255);
#endif
@@ -124,7 +124,7 @@ public:
return this;
};
virtual CExpression* Release(CExpression* complicatedtrick=NULL) {
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountExpr--;
#endif
if (--m_refcount < 1)

View File

@@ -35,7 +35,7 @@ effect: constructs a new CIntValue
*/
{
#ifdef _DEBUG_
#ifdef DEBUG_
m_textval = "Int illegal constructor";
#endif
m_pstrRep=NULL;

View File

@@ -86,7 +86,7 @@ struct SmartCValueRef
std::vector<SmartCValueRef> gRefList;
#endif
#ifdef _DEBUG
#ifdef DEBUG
//int gRefCountValue;
#endif
@@ -101,7 +101,7 @@ effect: constucts a CValue
*/
{
//debug(gRefCountValue++) // debugging
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountValue++;
#ifdef CVALUE_DEBUG
gRefList.push_back(SmartCValueRef(this));
@@ -460,7 +460,7 @@ void CValue::DisableRefCount()
m_refcount--;
//debug(gRefCountValue--);
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountValue--;
#endif
m_ValFlags.RefCountDisabled=true;
@@ -472,7 +472,7 @@ void CValue::ProcessReplica() /* was AddDataToReplica in 2.48 */
{
m_refcount = 1;
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountValue++;
#endif
PyObjectPlus::ProcessReplica();

View File

@@ -90,7 +90,7 @@ enum VALUE_DATA_TYPE {
#ifdef _DEBUG
#ifdef DEBUG
//extern int gRefCountValue; // debugonly variable to check if all CValue Refences are Dereferenced at programexit
#endif
@@ -251,7 +251,7 @@ public:
// Increase global reference count, used to see at the end of the program
// if all CValue-derived classes have been dereferenced to 0
//debug(gRefCountValue++);
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountValue++;
#endif
m_refcount++;
@@ -264,7 +264,7 @@ public:
// Decrease global reference count, used to see at the end of the program
// if all CValue-derived classes have been dereferenced to 0
//debug(gRefCountValue--);
#ifdef _DEBUG
#ifdef DEBUG
//gRefCountValue--;
#endif
// Decrease local reference count, if it reaches 0 the object should be freed

View File

@@ -36,7 +36,7 @@
#undef main
#endif
#ifndef _DEBUG
#ifndef DEBUG
# define JOYSTICK_ECHO(x)
#else
# include <iostream>