mirror of
https://github.com/MaskRay/ccls.git
synced 2025-01-31 18:00:26 +00:00
8 lines
146 B
C
8 lines
146 B
C
|
#pragma once
|
||
|
|
||
|
#if defined(__GNUC__) && !defined(__clang__)
|
||
|
#define ATTRIBUTE_UNUSED __attribute__((unused))
|
||
|
#else
|
||
|
#define ATTRIBUTE_UNUSED
|
||
|
#endif
|