Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / external / redland / rasqal / clang-cl.patch
blobe35a2b4ee10c813621bb138324a66a4c00c65794
1 --- src/rasqal.h
2 +++ src/rasqal.h
3 @@ -99,7 +99,7 @@
4 /* Use gcc 3.1+ feature to allow marking of deprecated API calls.
5 * This gives a warning during compiling.
6 */
7 -#if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3
8 +#if (defined __GNUC__ && (( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3)) || defined __clang__
9 #define RASQAL_DEPRECATED __attribute__((deprecated))
10 #else
11 #define RASQAL_DEPRECATED