Closed fiesh closed 4 years ago
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.
This should supersede #32.
You have signed the CLA for woboq/verdigris
-- I don't understand why the license/cla
test claims it's still unsigned.
Thanks for your contribution!
However, i think it is better not to add a new file for that. First of all, i want to avoid breaking changes. and also it is not ergonomic.
Instead, i have put these macro in a #ifndef W_NO_PROPERTY_MACRO block This way, you can define the W_NO_PROPERTY_MACRO macro in your .pro file, and the offensive macro won't be defined.
See commit 24af648aeb59c0ab06966fcfe9bcc246729c6153
I hope this solve your problem.
This moves the macro
W_PROPERTY
as well as its accompanying macrosWRITE
,READ
,NOTIFY
,RESET
,MEMBER
,CONSTANT
, andFINAL
to a separate filewproperty.h
.This is done because these macros tend to conflict with other code. Separating them makes it possible to omit their definitions.
This is necessarily a breaking change as code using these macros will now need to include
wproperty.h
.