2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2024-12-26 14:45:34 +03:00

Fix compilation

This commit is contained in:
asmodai 2017-05-09 02:39:40 +03:00
parent ad43c00200
commit d1d2a9b755
2 changed files with 5 additions and 1 deletions

View File

@ -117,7 +117,7 @@
#define JITASM_TRACE jitasm::detail::Trace
#endif
#elif defined(JITASM_GCC)
#define JITASM_TRACE(...) (()0)
#define JITASM_TRACE(...) ((void)0)
#else
#define JITASM_TRACE __noop
#endif

View File

@ -1,5 +1,9 @@
#pragma once
#include <util.h>
#include <dllapi.h>
#include <plinfo.h>
// max buffer size for printed messages
#define MAX_LOGMSG_LEN 1024