]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/output.cpp
Remove the ParenthesizedExpression node type
[libs/gl.git] / source / glsl / output.cpp
index f1e9b4be99ca8a2582e7a97944c0c16666f80540..b85c45e30149cf38cfc7c8bc415124d6d3cc6eff 100644 (file)
@@ -145,13 +145,6 @@ void Formatter::visit(Literal &literal)
        append(literal.token);
 }
 
-void Formatter::visit(ParenthesizedExpression &parexpr)
-{
-       append('(');
-       parexpr.expression->visit(*this);
-       append(')');
-}
-
 void Formatter::visit(VariableReference &var)
 {
        append(var.name);