Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit c3294e6

Browse files
committed
Fix error with MSVC compiler and to_c.hpp
1 parent f488ec2 commit c3294e6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/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-
union 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)