Fix typo
[LibreOffice.git] / external / cppunit / clang.patch.0
blob7a520f27616d097b15683b13dbe1a36c2a8ac56b
1 --- include/cppunit/TestAssert.h
2 +++ include/cppunit/TestAssert.h
3 @@ -11,7 +11,7 @@
4  
5  // Work around "passing 'T' chooses 'int' over 'unsigned int'" warnings when T
6  // is an enum type:
7 -#if defined __GNUC__ && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6))
8 +#if defined __GNUC__ && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)) && !defined __clang__
9  #pragma GCC system_header
10  #endif