Skip to content

Commit e3051e3

Browse files
committed
Fix fallback declaration in to_c.hpp
1 parent 10a4b63 commit e3051e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

to_c.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ namespace Sass {
3232
union Sass_Value* operator()(Arguments*);
3333
union Sass_Value* operator()(Argument*);
3434

35-
template <typename U>
36-
Sass_Value* fallback(U x) { return fallback_impl(x); }
35+
// dispatch to fallback implementation
36+
union Sass_Value* fallback(AST_Node* x)
37+
{ return fallback_impl(x); }
3738
};
3839

3940
}

0 commit comments

Comments
 (0)