We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Listize
1 parent b8236e7 commit dec2643Copy full SHA for dec2643
listize.cpp
@@ -78,13 +78,9 @@ namespace Sass {
78
return l;
79
}
80
81
- Expression* Listize::operator()(Parent_Selector* sel)
82
- {
83
- return 0;
84
- }
85
-
86
Expression* Listize::fallback_impl(AST_Node* n)
87
{
88
- return static_cast<Expression*>(n);
+ return dynamic_cast<Expression*>(n);
89
+
90
listize.hpp
@@ -30,7 +30,6 @@ namespace Sass {
30
Expression* operator()(Selector_List*);
31
Expression* operator()(Complex_Selector*);
32
Expression* operator()(Compound_Selector*);
33
- Expression* operator()(Parent_Selector*);
34
35
template <typename U>
36
Expression* fallback(U x) { return fallback_impl(x); }
0 commit comments