disable asserts globally unless DEBUG is defined
This commit is contained in:
@@ -5,11 +5,17 @@
|
||||
#ifndef WINDOWSXPKG_HEADER_H
|
||||
#define WINDOWSXPKG_HEADER_H
|
||||
|
||||
#ifdef DEBUG
|
||||
#include <cassert>
|
||||
#else
|
||||
#define assert(x) /* nothing */
|
||||
#endif
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <ctime>
|
||||
|
||||
#include <random>
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
|
||||
Reference in New Issue
Block a user