Changed: Compilation with VC++ 2012
This commit is contained in:
parent
f6e1bc3f3a
commit
13eed944d6
1 changed files with 5 additions and 5 deletions
|
@ -17,14 +17,14 @@
|
||||||
#ifndef NL_DEBUG_H
|
#ifndef NL_DEBUG_H
|
||||||
#define NL_DEBUG_H
|
#define NL_DEBUG_H
|
||||||
|
|
||||||
#include <cstdio>
|
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "mutex.h"
|
#include "mutex.h"
|
||||||
#include "mem_displayer.h"
|
#include "mem_displayer.h"
|
||||||
#include "displayer.h"
|
#include "displayer.h"
|
||||||
#include "app_context.h"
|
#include "app_context.h"
|
||||||
|
|
||||||
|
#include <cstdio>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
|
||||||
namespace NLMISC
|
namespace NLMISC
|
||||||
|
@ -169,7 +169,7 @@ void setCrashAlreadyReported(bool state);
|
||||||
*\endcode
|
*\endcode
|
||||||
*/
|
*/
|
||||||
#ifdef NL_NO_DEBUG
|
#ifdef NL_NO_DEBUG
|
||||||
# if defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) || defined(NL_COMP_VC10)
|
# if defined(NL_COMP_VC) && NL_COMP_VC_VERSION >= 71
|
||||||
# define nldebug __noop
|
# define nldebug __noop
|
||||||
# else
|
# else
|
||||||
# define nldebug 0&&
|
# define nldebug 0&&
|
||||||
|
@ -184,7 +184,7 @@ void setCrashAlreadyReported(bool state);
|
||||||
* Same as nldebug but it will be display in debug and in release mode.
|
* Same as nldebug but it will be display in debug and in release mode.
|
||||||
*/
|
*/
|
||||||
#ifdef NL_NO_DEBUG
|
#ifdef NL_NO_DEBUG
|
||||||
# if defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) || defined(NL_COMP_VC10)
|
# if defined(NL_COMP_VC) && NL_COMP_VC_VERSION >= 71
|
||||||
# define nlinfo __noop
|
# define nlinfo __noop
|
||||||
# else
|
# else
|
||||||
# define nlinfo 0&&
|
# define nlinfo 0&&
|
||||||
|
@ -212,7 +212,7 @@ void setCrashAlreadyReported(bool state);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef NL_NO_DEBUG
|
#ifdef NL_NO_DEBUG
|
||||||
# if defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) || defined(NL_COMP_VC10)
|
# if defined(NL_COMP_VC) && NL_COMP_VC_VERSION >= 71
|
||||||
# define nlwarning __noop
|
# define nlwarning __noop
|
||||||
# else
|
# else
|
||||||
# define nlwarning 0&&
|
# define nlwarning 0&&
|
||||||
|
|
Loading…
Reference in a new issue