From 52ec143a9293735a258a1165e3321781b629b8b7 Mon Sep 17 00:00:00 2001 From: Jonathan Li Date: Thu, 12 Jan 2017 18:43:08 +0000 Subject: [PATCH] gsdx:windows: Fix deprecated ATL attributes warning --- plugins/GSdx/GSCapture.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/plugins/GSdx/GSCapture.cpp b/plugins/GSdx/GSCapture.cpp index 0328c02bd7..ed875c54ae 100644 --- a/plugins/GSdx/GSCapture.cpp +++ b/plugins/GSdx/GSCapture.cpp @@ -29,12 +29,7 @@ // // GSSource // - -#ifdef __INTEL_COMPILER interface __declspec(uuid("59C193BB-C520-41F3-BC1D-E245B80A86FA")) -#else -[uuid("59C193BB-C520-41F3-BC1D-E245B80A86FA")] interface -#endif IGSSource : public IUnknown { STDMETHOD(DeliverNewSegment)() PURE; @@ -42,11 +37,7 @@ IGSSource : public IUnknown STDMETHOD(DeliverEOS)() PURE; }; -#ifdef __INTEL_COMPILER class __declspec(uuid("F8BB6F4F-0965-4ED4-BA74-C6A01E6E6C77")) -#else -[uuid("F8BB6F4F-0965-4ED4-BA74-C6A01E6E6C77")] class -#endif GSSource : public CBaseFilter, private CCritSec, public IGSSource { GSVector2i m_size;