Skip to content

Commit

Permalink
Fix fallback declaration in to_c.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Jul 19, 2015
1 parent 10a4b63 commit e3051e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions to_c.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ namespace Sass {
union Sass_Value* operator()(Arguments*);
union Sass_Value* operator()(Argument*);

template <typename U>
Sass_Value* fallback(U x) { return fallback_impl(x); }
// dispatch to fallback implementation
union Sass_Value* fallback(AST_Node* x)
{ return fallback_impl(x); }
};

}
Expand Down

0 comments on commit e3051e3

Please sign in to comment.