Commit 44827b67 by Edward Thomson

deprecation: add `used` attribute

Recent GCC enables `-Wunused-const-variables`, which makes output quite
noisy.  Disable unused warnings for our deprecated variables.
parent 1758636b
...@@ -59,6 +59,7 @@ typedef size_t size_t; ...@@ -59,6 +59,7 @@ typedef size_t size_t;
#if defined(__GNUC__) #if defined(__GNUC__)
# define GIT_DEPRECATED(func) \ # define GIT_DEPRECATED(func) \
__attribute__((deprecated)) \ __attribute__((deprecated)) \
__attribute__((used)) \
func func
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
# define GIT_DEPRECATED(func) __declspec(deprecated) func # define GIT_DEPRECATED(func) __declspec(deprecated) func
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment