From c9fb05dc2a755e3ad65017c2efeac1c7984a9060 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 12 Apr 2014 19:47:53 +0100 Subject: [PATCH] Fix my mingw build --- source/modules/juce_core/native/juce_win32_ComSmartPtr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/modules/juce_core/native/juce_win32_ComSmartPtr.h b/source/modules/juce_core/native/juce_win32_ComSmartPtr.h index 0dc0efc20..c89a58de4 100644 --- a/source/modules/juce_core/native/juce_win32_ComSmartPtr.h +++ b/source/modules/juce_core/native/juce_win32_ComSmartPtr.h @@ -29,7 +29,7 @@ #ifndef JUCE_WIN32_COMSMARTPTR_H_INCLUDED #define JUCE_WIN32_COMSMARTPTR_H_INCLUDED -#if ! (defined (_MSC_VER) || defined (__uuidof)) +#if ! defined (_MSC_VER) //|| defined (__uuidof)) template struct UUIDGetter { static CLSID get() { jassertfalse; return CLSID(); } }; #define __uuidof(x) UUIDGetter::get() #endif