Replies: 1 comment 3 replies
-
Not sure why you mention |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Some files like src/entt/signal/fwd.hpp make use of std::allocator<void> which was deprecated in C++17 and removed in C++20. Depending on the compiler being used, they can be more or less vocal about this warning, which could result in spam in the output. Therefore, I was wondering if there is a reason why entt still uses std::allocator<void> as a default type parameter in latest releases. Does anybody know? If not, does anybody know what is the purpose of declaring a default type parameter for forward declarations of templates like basic_dispatcher? Does it reduce the compilation time by giving hints to the compiler somehow?
Beta Was this translation helpful? Give feedback.
All reactions