Re: [Mesa-dev] [PATCH 01/17] mesa: Fix warning about static being in the wrong place

2015-08-26 Thread Ilia Mirkin
Reviewed-by: Ilia Mirkin On Wed, Aug 26, 2015 at 1:19 PM, Ian Romanick wrote: > From: Ian Romanick > > Because the compiler already has enough things to complain about. > > grep -rl 'const static' src/ | while read f > do > sed --in-place -e 's/const static/static const/g' $f >

[Mesa-dev] [PATCH 01/17] mesa: Fix warning about static being in the wrong place

2015-08-26 Thread Ian Romanick
From: Ian Romanick Because the compiler already has enough things to complain about. grep -rl 'const static' src/ | while read f do sed --in-place -e 's/const static/static const/g' $f done brw_eu_emit.c: In function 'brw_reg_type_to_hw_type': brw_eu_emit.c:98:7: warning: 's