Graphviz 12.0.1~dev.20240716.0800
Loading...
Searching...
No Matches
unused.h
Go to the documentation of this file.
1
4
5#pragma once
6
16#ifdef __GNUC__ // Clang and GCC
17#define UNUSED __attribute__((unused))
18#elif defined(_MSC_VER) // MSVC
19#define UNUSED \
20 __pragma(warning(suppress : 4100 /* unreferenced formal parameter */ \
21 4101 /* unreferenced local variable */ \
22 4505 /* unreferenced local function */ \
23 ))
24#else
25#define UNUSED /* nothing */
26#endif