Merge "clang/win: Make libvpx build with -Wunused-function."

This commit is contained in:
Tom Finegan 2015-08-10 17:25:32 +00:00 committed by Gerrit Code Review
commit 20d902a376

View File

@ -69,7 +69,7 @@ extern "C" {
/*!\brief Decorator indicating a function is potentially unused */
#ifdef UNUSED
#elif __GNUC__
#elif defined(__GNUC__) || defined(__clang__)
#define UNUSED __attribute__ ((unused))
#else
#define UNUSED