I am going to be landing the removal of that option the week after next (I’m out for thanksgiving in the US). That option has been deprecated for quite some time now (formally announced removal in ~early september, but has been the plan since announced a year ago to fully remove).
@jpienaar mentioned them at some point, but I can’t find which discussion/commit referenced them now.
Note that clang-tidy logic for these is quadratic (or similar) in the number of accessors defined, so if you have too many symbols, you will want to split them up. For example, I think I was seeing 20minute times when running refactors for 10,000 accessors and looking into a single header file (I forget if this time is due to setup costs or later costs per file). If needed, I can find and share a patch I created to resolve this quadratic time (it was implemented with assumptions that prevent it from being landed in clang-tidy).
@philass : I’m interested to hear if you have suggestions about how to communicate this kind of things better with downstream consumers like you to avoid being surprised at the last minute.