From 9cd3e10283ea0c6cc997afc5353c0f314b3aa092 Mon Sep 17 00:00:00 2001 From: nil Date: Tue, 14 Jan 2025 20:16:17 +0100 Subject: changing host repository --- ...usr@lib@clang@18@include@__stddef_max_align_t.h | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 .ccls-cache/@@home@niliara@configs/@usr@lib@clang@18@include@__stddef_max_align_t.h (limited to '.ccls-cache/@@home@niliara@configs/@usr@lib@clang@18@include@__stddef_max_align_t.h') diff --git a/.ccls-cache/@@home@niliara@configs/@usr@lib@clang@18@include@__stddef_max_align_t.h b/.ccls-cache/@@home@niliara@configs/@usr@lib@clang@18@include@__stddef_max_align_t.h new file mode 100755 index 0000000..512606a --- /dev/null +++ b/.ccls-cache/@@home@niliara@configs/@usr@lib@clang@18@include@__stddef_max_align_t.h @@ -0,0 +1,27 @@ +/*===---- __stddef_max_align_t.h - Definition of max_align_t ---------------=== + * + * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. + * See https://llvm.org/LICENSE.txt for license information. + * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + * + *===-----------------------------------------------------------------------=== + */ + +#ifndef __CLANG_MAX_ALIGN_T_DEFINED +#define __CLANG_MAX_ALIGN_T_DEFINED + +#if defined(_MSC_VER) +typedef double max_align_t; +#elif defined(__APPLE__) +typedef long double max_align_t; +#else +// Define 'max_align_t' to match the GCC definition. +typedef struct { + long long __clang_max_align_nonce1 + __attribute__((__aligned__(__alignof__(long long)))); + long double __clang_max_align_nonce2 + __attribute__((__aligned__(__alignof__(long double)))); +} max_align_t; +#endif + +#endif -- cgit v1.2.3