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

This commit is contained in:
Tom Finegan 2015-08-10 17:25:32 +00:00 коммит произвёл Gerrit Code Review
Родитель 1767067068 8a64f516cb
Коммит 20d902a376
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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