Propagate eRNAOverrideMatchResult 'return' flags at higher level into
BKE API, instead of just returning a boolean true when new override
rules have been created.
NOTE: This is an intermediary step towards fixing T102766.
Differential D16761
WIP: Small refactor of some of the RNA diffing API. Authored by Bastien Montagne (mont29) on Dec 13 2022, 1:30 PM. Tags None Subscribers None
Details Propagate eRNAOverrideMatchResult 'return' flags at higher level into NOTE: This is an intermediary step towards fixing T102766.
Diff Detail
Event TimelineComment Actions In C++ it's possible to forward declare enums when specifying the data type, like enum eRNAOverrideMatchResult : unsigned int. However in C the only solution is to just use int or to add includes in headers to define the enum. Comment Actions Thanks @Brecht Van Lommel (brecht), just wanted to be sure I was not missing anything here. Patch is now ready, not sure if you guys want/need to review it though. |