From cf30a08b43658622fab5ee3d149ba2c4928d9503 Mon Sep 17 00:00:00 2001 From: no Date: Tue, 12 Jan 2016 20:28:45 -0500 Subject: [PATCH] [Common] Ensure that __interface is declared for _WIN32 also. --- Source/Common/Trace.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/Common/Trace.h b/Source/Common/Trace.h index e121f2769..d0932d907 100644 --- a/Source/Common/Trace.h +++ b/Source/Common/Trace.h @@ -11,8 +11,10 @@ enum TraceSeverity TraceVerbose = 0x00000006, }; -#ifndef _WIN32 -#define __interface struct +#if defined(_WIN32) +#include +#else +#define __interface struct #endif __interface CTraceModule