Skip to content

Commit 0945a8e

Browse files
committed
Remove unused and bad isPrintable(Expression) function
Fixes #1361
1 parent f50781a commit 0945a8e

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/util.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -582,10 +582,6 @@ namespace Sass {
582582
return true;
583583
}
584584

585-
bool isPrintable(Expression* e, Output_Style style) {
586-
return isPrintable(e, style);
587-
}
588-
589585
bool isPrintable(Supports_Block* f, Output_Style style) {
590586
if (f == NULL) {
591587
return false;

src/util.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ namespace Sass {
4646
bool isPrintable(String_Constant* s, Output_Style style = NESTED);
4747
bool isPrintable(String_Quoted* s, Output_Style style = NESTED);
4848
bool isPrintable(Declaration* d, Output_Style style = NESTED);
49-
bool isPrintable(Expression* e, Output_Style style = NESTED);
5049
bool isAscii(const char chr);
5150

5251
}

0 commit comments

Comments
 (0)