Fix a build error with the object creator #79360
Merged
+1
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
None
Purpose of change
The object creator project isn't building. An override was defined in #64046, but #78548 (both @akrieger) forgot to remove it for the object creator. Easy to do since we don't even build the project with CI anymore.
Describe the solution
Remove the override so it stops looking for something that isn't there.
Describe alternatives you've considered
Maybe it's time to just remove object creator from the repo? It hasn't worked in years, as far as anyone's mentioned, and it's sucking up developer time.
Since we're not even building it with CI this kind of breakage is only going to keep happening.
Testing
Project still does not build due to some indeterminable error with
enum_traits
template specialization. I troubleshooted it for a while but I couldn't even figure out where the bad template was. C++ compilers do not produce very helpful error messages.Additional context