Browse Source

Moved bufferW out of verbose block

4.0.0-beta
Anairkoen Schno 4 years ago
parent
commit
76ed12c7f8
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 #pragma once
#ifdef _VERBOSE
#pragma comment(lib, "ucrt.lib") #pragma comment(lib, "ucrt.lib")
#include <windows.h> #include <windows.h>
#include <stdio.h> #include <stdio.h>
#ifdef _VERBOSE
static HANDLE log_handle; static HANDLE log_handle;
static char buffer[8192]; static char buffer[8192];
static wchar_t bufferW[8192];
inline void init_logger() inline void init_logger()
{ {
@ -40,6 +38,8 @@ inline void free_logger()
#define LOG(message, ...) #define LOG(message, ...)
#endif #endif
static wchar_t bufferW[8192];
#define ASSERT_F(test, message, ...) \ #define ASSERT_F(test, message, ...) \
if(!(test)) \ if(!(test)) \
{ \ { \


Loading…
Cancel
Save