From: Timothy Arceri Date: Wed, 28 Sep 2016 06:04:06 +0000 (+1000) Subject: glsl: remove tabs from ast_expr.cpp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b193c4d75b059dbfb0a1123566c2b0da7c3b4bf7;p=mesa.git glsl: remove tabs from ast_expr.cpp Acked-by: Dave Airlie --- diff --git a/src/compiler/glsl/ast_expr.cpp b/src/compiler/glsl/ast_expr.cpp index e624d11cf3b..1fd5b6e642d 100644 --- a/src/compiler/glsl/ast_expr.cpp +++ b/src/compiler/glsl/ast_expr.cpp @@ -79,7 +79,7 @@ ast_expression::operator_string(enum ast_operators op) ast_expression_bin::ast_expression_bin(int oper, ast_expression *ex0, - ast_expression *ex1) : + ast_expression *ex1) : ast_expression(oper, ex0, ex1, NULL) { assert((oper >= ast_plus) && (oper <= ast_logic_not));