X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Furcu%2Fcompiler.h;fp=include%2Furcu%2Fcompiler.h;h=376b5073facc82957f12ebad6a69cb2911b7c205;hb=3021d0b8ae2f31db59698ae2106aac9813dbab1d;hp=3ba9aeca0c075b10d36e116112b5a359c59b16ff;hpb=f469420bf77f07598747b78cc73404f1751ae2f0;p=urcu.git diff --git a/include/urcu/compiler.h b/include/urcu/compiler.h index 3ba9aec..376b507 100644 --- a/include/urcu/compiler.h +++ b/include/urcu/compiler.h @@ -136,30 +136,4 @@ + __GNUC_PATCHLEVEL__) #endif -#ifdef __cplusplus -#define caa_unqual_scalar_typeof(x) \ - std::remove_cv::type>::type -#else -#define caa_scalar_type_to_expr(type) \ - unsigned type: (unsigned type)0, \ - signed type: (signed type)0 - -/* - * Use C11 _Generic to express unqualified type from expression. This removes - * volatile qualifier from expression type. - */ -#define caa_unqual_scalar_typeof(x) \ - __typeof__( \ - _Generic((x), \ - char: (char)0, \ - caa_scalar_type_to_expr(char), \ - caa_scalar_type_to_expr(short), \ - caa_scalar_type_to_expr(int), \ - caa_scalar_type_to_expr(long), \ - caa_scalar_type_to_expr(long long), \ - default: (x) \ - ) \ - ) -#endif - #endif /* _URCU_COMPILER_H */