forked from lthn/blockchain
warning fixed
This commit is contained in:
parent
40539c1f9d
commit
3b1f08676e
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (c) 2019, Zano Project
|
||||
// Copyright (c) 2019-2024, Zano Project
|
||||
// Copyright (c) 2019, anonimal <anonimal@zano.org>
|
||||
// Copyright (c) 2006-2013, Andrey N. Sabelnikov, www.sabelnikov.net
|
||||
// All rights reserved.
|
||||
|
|
@ -90,7 +90,7 @@ DISABLE_VS_WARNINGS(4100)
|
|||
#define LOG_JOURNAL_MAX_ELEMENTS 100
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define _ASSERTE__(expr) if(!expr) {__debugbreak();}
|
||||
#define _ASSERTE__(expr) if(!(expr)) {__debugbreak();}
|
||||
#else
|
||||
#define _ASSERTE__(expr)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue