all: Remove spaces inside and around parenthesis.
Using new options enabled in the uncrustify configuration.
This commit is contained in:
@@ -93,11 +93,11 @@
|
||||
#ifdef __LP64__
|
||||
typedef long mp_int_t; // must be pointer size
|
||||
typedef unsigned long mp_uint_t; // must be pointer size
|
||||
#elif defined ( __MINGW32__ ) && defined( _WIN64 )
|
||||
#elif defined(__MINGW32__) && defined(_WIN64)
|
||||
#include <stdint.h>
|
||||
typedef __int64 mp_int_t;
|
||||
typedef unsigned __int64 mp_uint_t;
|
||||
#elif defined ( _MSC_VER ) && defined( _WIN64 )
|
||||
#elif defined(_MSC_VER) && defined(_WIN64)
|
||||
typedef __int64 mp_int_t;
|
||||
typedef unsigned __int64 mp_uint_t;
|
||||
#else
|
||||
@@ -119,7 +119,7 @@ typedef long mp_off_t;
|
||||
// We need to provide a declaration/definition of alloca()
|
||||
#ifdef __FreeBSD__
|
||||
#include <stdlib.h>
|
||||
#elif defined( _WIN32 )
|
||||
#elif defined(_WIN32)
|
||||
#include <malloc.h>
|
||||
#else
|
||||
#include <alloca.h>
|
||||
|
||||
Reference in New Issue
Block a user