quench clang warnings

This commit is contained in:
Wenzel Jakob 2015-08-04 19:03:53 +02:00
parent 281aa0e668
commit d85215c18d
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
#pragma warning(disable: 4996) // warning C4996: The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
#pragma warning(disable: 4100) // warning C4100: Unreferenced formal parameter
#pragma warning(disable: 4512) // warning C4512: Assignment operator was implicitly defined as deleted
#elif defined(__GNUG__)
#elif defined(__GNUG__) and !defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-but-set-parameter"
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
@ -818,7 +818,7 @@ NAMESPACE_END(pybind)
#if defined(_MSC_VER)
#pragma warning(pop)
#elif defined(__GNUG__)
#elif defined(__GNUG__) and !defined(__clang__)
#pragma GCC diagnostic pop
#endif