[LIB/ATL] Take the gcc code path for the unused macros when compiling with clang. CORE-11799 (#94)

This commit is contained in:
Amine Khaldi 2017-10-31 14:44:07 +01:00
parent 58bb4b31bc
commit a75904fe66
No known key found for this signature in database
GPG key ID: DEE3CC0548AE44F1

View file

@ -20,7 +20,7 @@
#pragma once
#ifdef __GNUC__
#if defined(__GNUC__) || defined(__clang__)
#define GCCU(x) x __attribute__((unused))
#define Unused(x)
#else