sharkdp / dbg-macro

A dbg(…) macro for C++
MIT License
2.97k stars 257 forks source link

Make sure _MSC_VER is defined when used #132

Closed shilangyu closed 11 months ago

shilangyu commented 11 months ago

Otherwise this raises a warning under -Wundef:

error: '_MSC_VER' is not defined, evaluates to 0 [-Werror,-Wundef]
#if _MSC_VER >= 1600
    ^
sharkdp commented 11 months ago

Thank you