Skip to content

Commit a031677

Browse files
committed
Clean some compiler warnings
1 parent ef8b33e commit a031677

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/ast_expressions.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace Sass {
3939
}
4040

4141
// Convert to string (only for debugging)
42-
sass::string toString() const
42+
sass::string toString() const override final
4343
{
4444
return "&";
4545
}

src/ast_nodes.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,11 @@ namespace Sass {
164164
virtual sass::string toString() const = 0;
165165

166166
// Declare up-casting methods
167-
DECLARE_ISA_CASTER(IfExpression);
168-
DECLARE_ISA_CASTER(CssFnExpression);
169167
DECLARE_ISA_CASTER(UnaryOpExpression);
170168
DECLARE_ISA_CASTER(BinaryOpExpression);
171169
DECLARE_ISA_CASTER(InvocationExpression);
172170
DECLARE_ISA_CASTER(ParenthesizedExpression);
173171
DECLARE_ISA_CASTER(VariableExpression);
174-
DECLARE_ISA_CASTER(FunctionExpression);
175172
DECLARE_ISA_CASTER(BooleanExpression);
176173
DECLARE_ISA_CASTER(StringExpression);
177174
DECLARE_ISA_CASTER(NumberExpression);

0 commit comments

Comments
 (0)