瀏覽代碼

Fix the LOL_DEBUG environment variable handling logic.

pull/1/head
Sam Hocevar 4 年之前
父節點
當前提交
8ce1b6ec9c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      include/lol/private/base/msg.h

+ 2
- 2
include/lol/private/base/msg.h 查看文件

@@ -66,8 +66,8 @@ private:
#if !_DEBUG
if (type == message_type::debug)
{
static bool const disable_debug = sys::getenv("LOL_DEBUG").size() > 0;
if (disable_debug)
static bool const enforce_debug = sys::getenv("LOL_DEBUG").size() > 0;
if (!enforce_debug)
return;
}
#endif


Loading…
取消
儲存