mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 16:51:18 +00:00
[LIB/ATL] Take the gcc code path for the unused macros when compiling with clang. CORE-11799 (#94)
This commit is contained in:
parent
58bb4b31bc
commit
a75904fe66
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#if defined(__GNUC__) || defined(__clang__)
|
||||||
#define GCCU(x) x __attribute__((unused))
|
#define GCCU(x) x __attribute__((unused))
|
||||||
#define Unused(x)
|
#define Unused(x)
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue