view LightClone/Source/Debug.h @ 61:1fe27776627e

Added asserts
author koryspansel
date Mon, 03 Oct 2011 15:05:09 -0700
parents
children
line wrap: on
line source

/*
 * Debug
 */

#ifndef __DEBUG_H__
#define __DEBUG_H__

#if defined(_DEBUG)

#include <cassert>

/*
 * ASSERT
 */
#define ASSERT assert

#else

/*
 * ASSERT
 */
#define ASSERT(...)

#endif

#endif //__DEBUG_H__