-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTAD issue using frozen::map #168
Comments
Example compilation error:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm unable to use class template argument deduction with
frozen::map
andfrozen::unordered_map
. I'm able to use it withstd::map
andstd::unordered_map
.Is this a bug with the
frozen
library or an issue with my code?I've tried compiling with v1.1.1 and with the latest (7e79c37) from git. Both fail in the same way.
Environment:
My primary reason for wanting to use CTAD is to avoid having to specify the size of the container, which can be awkward with large datasets.
The text was updated successfully, but these errors were encountered: