Those some people would be the authors of the standard library who use type erasure for std::function, std::string_view, std::span, std::any, std::ranges, std::fmt, the new class of pmr memory allocators use type erasure, the upcoming coroutines are built on type erasure.
Common C++ libraries like boost have an entire library dedicated to type erasure:
https://www.boost.org/doc/libs/1_75_0/doc/html/boost_typeera...
Facebook's Folly library also provides type erasure functionality:
https://github.com/facebook/folly/blob/master/folly/docs/Pol...
Google's Abseil is full of type erasure:
https://abseil.io/
Here is Adobe's C++ library for type erasure:
https://stlab.adobe.com/group__poly__related.html
And here's a talk by Sean Parent about how Adobe uses type erasure to emulate runtime polymorphism without using C++'s native OO features:
https://www.youtube.com/watch?v=QGcVXgEVMJg
I suppose these are just some people somewhere...