The defines were already set globally in our environment when building with VS2019, causing warnings due to redefines (and we treat all warnings as errors). The fix is simple, add #ifndef around the defines so they are only defined if not already defined.
The defines were already set globally in our environment when building with VS2019, causing warnings due to redefines (and we treat all warnings as errors). The fix is simple, add
#ifndef
around the defines so they are only defined if not already defined.