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
Trying to compile libsass on Visual Studio 2017 on Windows fails with error(s):
operation.hpp(191): error C2027: use of undefined type 'Sass::Selector_List' operation.hpp(191): error C2027: use of undefined type 'Sass::Complex_Selector'
...
(Errors are repeating themselves, just with different classes).
I'm not very familiar with the code, but changing typeid to use x instead of *x:
throwstd::runtime_error(msg + typeid(*x).name());
to:
throwstd::runtime_error(msg + typeid(x).name());
Allows libsass to compile successfully.
The text was updated successfully, but these errors were encountered:
I compiled it just now with MSVC 2017 and can't reproduce, the change is definitely not dangerous, since it only affects error reporting if CRTP implementation is missing some types. But as I said, can't reproduce ...
Trying to compile libsass on Visual Studio 2017 on Windows fails with error(s):
operation.hpp(191): error C2027: use of undefined type 'Sass::Selector_List'
operation.hpp(191): error C2027: use of undefined type 'Sass::Complex_Selector'
...
(Errors are repeating themselves, just with different classes).
I'm not very familiar with the code, but changing typeid to use x instead of *x:
to:
Allows libsass to compile successfully.
The text was updated successfully, but these errors were encountered: