-
Notifications
You must be signed in to change notification settings - Fork 161
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
Interfaces core.hpp and tuple_size.hpp no more has aliases #103
Conversation
Pull Request Test Coverage Report for Build 2972180814
💛 - Coveralls |
What is the purpose of specializing those two structures? |
Those two structures are not intended to specialize by library's user(i wrote a note in the docs about it, just now). Ability to specialize will be used by library developers. |
It may reduce a lot of code, when i continue integrating pfr into fusion using "VIEW manipulator", like this:
See #100 for more detail about |
Not actual. It may be reopened in the future when we decide that we really need 'boost::pfr::view' or 'boost::pfr::view_fields', but not now. |
In C++ we can't make specialization for type alias, but for structure can.
This PR will make #100 possible to implement.