mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-08 08:20:33 +00:00
Transition to clang-format 19
This commit is contained in:
parent
700d4403d5
commit
6d00641896
@ -36,9 +36,7 @@ struct VOLK_CPU volk_gnsssdr_cpu;
|
||||
static inline unsigned long long _xgetbv(unsigned int index)
|
||||
{
|
||||
unsigned int eax, edx;
|
||||
__VOLK_ASM __VOLK_VOLATILE("xgetbv"
|
||||
: "=a"(eax), "=d"(edx)
|
||||
: "c"(index));
|
||||
__VOLK_ASM __VOLK_VOLATILE("xgetbv" : "=a"(eax), "=d"(edx) : "c"(index));
|
||||
return ((unsigned long long)edx << 32) | eax;
|
||||
}
|
||||
#define __xgetbv() _xgetbv(0)
|
||||
|
@ -147,8 +147,7 @@ static long GMTOFF(struct tm a)
|
||||
} \
|
||||
while (0); \
|
||||
} \
|
||||
while (0) \
|
||||
;
|
||||
while (0);
|
||||
|
||||
#ifdef _EMULATE_TIMEGM
|
||||
static time_t timegm(struct tm *tm)
|
||||
|
@ -777,8 +777,7 @@ static struct OCTET_STRING__xer_escape_table_s
|
||||
} OCTET_STRING__xer_escape_table[] = {
|
||||
#define OSXET(s) \
|
||||
{ \
|
||||
s, sizeof(s) - 1 \
|
||||
}
|
||||
s, sizeof(s) - 1}
|
||||
OSXET("\074\156\165\154\057\076"), /* <nul/> */
|
||||
OSXET("\074\163\157\150\057\076"), /* <soh/> */
|
||||
OSXET("\074\163\164\170\057\076"), /* <stx/> */
|
||||
|
Loading…
Reference in New Issue
Block a user