You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make EValue template constructor MSVC friendly (#6631)
Summary:
The current EValue template constructor is not MSVC friendly, in order to make it MSVC friendly had to make some small changes such as:
- Using a default template argument (typename = typename std::enable_if<...>::type). This means that the std::enable_if condition is evaluated when the template is instantiated.
- Separating the SFINAE condition from the function signature.
Reviewed By: dbort
Differential Revision: D65402442
0 commit comments