Bug 1117031 - Turn off unused argument warnings for clang-cl; r=glandium

This commit is contained in:
Ehsan Akhgari 2015-01-02 00:44:05 -05:00
Родитель 721832ff85
Коммит 16193762d8
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -1245,11 +1245,11 @@ MOZ_ANDROID_STLPORT
dnl ========================================================
dnl Suppress Clang Argument Warnings
dnl ========================================================
if test -n "$CLANG_CC"; then
if test -n "${CLANG_CC}${CLANG_CL}"; then
_WARNINGS_CFLAGS="-Qunused-arguments ${_WARNINGS_CFLAGS}"
CPPFLAGS="-Qunused-arguments ${CPPFLAGS}"
fi
if test -n "$CLANG_CXX"; then
if test -n "${CLANG_CXX}${CLANG_CL}"; then
_WARNINGS_CXXFLAGS="-Qunused-arguments ${_WARNINGS_CXXFLAGS}"
fi

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

@ -1033,11 +1033,11 @@ MOZ_ANDROID_STLPORT
dnl ========================================================
dnl Suppress Clang Argument Warnings
dnl ========================================================
if test -n "$CLANG_CC"; then
if test -n "${CLANG_CC}${CLANG_CL}"; then
_WARNINGS_CFLAGS="-Qunused-arguments ${_WARNINGS_CFLAGS}"
CPPFLAGS="-Qunused-arguments ${CPPFLAGS}"
fi
if test -n "$CLANG_CXX"; then
if test -n "${CLANG_CXX}${CLANG_CL}"; then
_WARNINGS_CXXFLAGS="-Qunused-arguments ${_WARNINGS_CXXFLAGS}"
fi