From 1d5829bea03e2ca83fd101939fa8102b6ecccc21 Mon Sep 17 00:00:00 2001 From: no Date: Tue, 12 Jan 2016 20:25:36 -0500 Subject: [PATCH] [Common] #define __interface for any !WIN32, not just MSC. --- Source/Common/Trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Common/Trace.h b/Source/Common/Trace.h index e1744cd0d..e121f2769 100644 --- a/Source/Common/Trace.h +++ b/Source/Common/Trace.h @@ -11,7 +11,7 @@ enum TraceSeverity TraceVerbose = 0x00000006, }; -#ifndef _MSC_VER +#ifndef _WIN32 #define __interface struct #endif