rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit ac3196a56940fbef62a48f241472f90e507c0978
parent b842d579ee3d80424899dfdbfb0cddcd70f38cc3
Author: vaplv <vaplv@free.fr>
Date:   Wed, 17 Jan 2018 12:00:54 +0100

Fix the detection of 64bits architecture on CL

Diffstat:
Msrc/rsys.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rsys.h b/src/rsys.h @@ -81,7 +81,7 @@ /******************************************************************************* * Architecture ******************************************************************************/ -#if defined(__x86_64__) +#if defined(__x86_64__) || defined(_M_X64) #define ARCH_64BITS #else #define ARCH_32BITS