debugout: Fix compiler crash on builds where QW_DEBUG is not defined
All checks were successful
buildbot/Ascendent (FreeBSD) Build done.
buildbot/Ascendent (Alpine) Build done.

This commit is contained in:
S David 2022-08-24 20:05:28 -04:00
parent a3e7139253
commit 3a87f1fe47

View File

@ -24,7 +24,7 @@
#include <vector>
#ifdef QW_DEBUG //#region
using debugout = std::cout;
auto& debugout = std::cout;
#else
// #region nullout definition
// thanks to https://stackoverflow.com/a/59673391