summaryrefslogtreecommitdiffstats
path: root/src/compiler/glsl/ast_expr.cpp
diff options
context:
space:
mode:
authorTimothy Arceri <timothy.arceri@collabora.com>2016-09-28 16:04:06 +1000
committerTimothy Arceri <timothy.arceri@collabora.com>2016-09-29 11:06:12 +1000
commitb193c4d75b059dbfb0a1123566c2b0da7c3b4bf7 (patch)
tree9d509dc5356ede5d0c84aecf7fac2f39463aae7a /src/compiler/glsl/ast_expr.cpp
parent386045a3df1b12be1d9ebc03233df07a0a286618 (diff)
downloadexternal_mesa3d-b193c4d75b059dbfb0a1123566c2b0da7c3b4bf7.zip
external_mesa3d-b193c4d75b059dbfb0a1123566c2b0da7c3b4bf7.tar.gz
external_mesa3d-b193c4d75b059dbfb0a1123566c2b0da7c3b4bf7.tar.bz2
glsl: remove tabs from ast_expr.cpp
Acked-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/compiler/glsl/ast_expr.cpp')
-rw-r--r--src/compiler/glsl/ast_expr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ast_expr.cpp b/src/compiler/glsl/ast_expr.cpp
index e624d11..1fd5b6e 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));