Browse Source

Moved bufferW out of verbose block

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
9fe1b19248
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      Doorstop/Proxy/assert_util.h

+ 4
- 4
Doorstop/Proxy/assert_util.h View File

@ -1,16 +1,14 @@
#pragma once
#ifdef _VERBOSE
#pragma comment(lib, "ucrt.lib")
#include <windows.h>
#include <stdio.h>
#ifdef _VERBOSE
static HANDLE log_handle;
static char buffer[8192];
static wchar_t bufferW[8192];
inline void init_logger()
{
@ -40,6 +38,8 @@ inline void free_logger()
#define LOG(message, ...)
#endif
static wchar_t bufferW[8192];
#define ASSERT_F(test, message, ...) \
if(!(test)) \
{ \


Loading…
Cancel
Save