mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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
|
||||
|
||||
#ifdef __GNUC__
|
||||
#if defined(__GNUC__) || defined(__clang__)
|
||||
#define GCCU(x) x __attribute__((unused))
|
||||
#define Unused(x)
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue