mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2026-06-28 18:10:32 +03:00
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