Re: [Mesa-dev] [PATCH 6/6] mesa: replace binary constants with hexadecimal constants

2018-08-02 Thread Ilia Mirkin
On Wed, Aug 1, 2018 at 2:53 PM, Andres Gomez wrote: > The binary constant notation "0b" is a GCC extension. Instead, we use > hexadecimal notation to fix the MSVC 2013 build: > > Compiling src\mesa\main\texcompress_astc.cpp ... > texcompress_astc.cpp > src\mesa\main\texcompress_astc.cpp(111) :

Re: [Mesa-dev] [PATCH 6/6] mesa: replace binary constants with hexadecimal constants

2018-08-01 Thread Andres Gomez
On Wed, 2018-08-01 at 16:43 -0400, Ilia Mirkin wrote: > On Wed, Aug 1, 2018 at 2:53 PM, Andres Gomez wrote: > > The binary constant notation "0b" is a GCC extension. Instead, we use > > hexadecimal notation to fix the MSVC 2013 build: > > > > Compiling src\mesa\main\texcompress_astc.cpp ... > >

[Mesa-dev] [PATCH 6/6] mesa: replace binary constants with hexadecimal constants

2018-08-01 Thread Andres Gomez
The binary constant notation "0b" is a GCC extension. Instead, we use hexadecimal notation to fix the MSVC 2013 build: Compiling src\mesa\main\texcompress_astc.cpp ... texcompress_astc.cpp src\mesa\main\texcompress_astc.cpp(111) : error C2059: syntax error : 'bad suffix on number' ...