summaryrefslogtreecommitdiff
path: root/dbgmsg.cc
blob: f09ebf7756176cdf9984dffbaf503f05a40f5096 (plain) (blame)
1
2
3
4
5
6
# include <luma/main.hh>
void luma::dbgmsg(char const * msg) {
	if constexpr(debug) {
		luma::msgerr(msg);
	}
}