From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/gcc~13/offsetof.html | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 devdocs/gcc~13/offsetof.html (limited to 'devdocs/gcc~13/offsetof.html') diff --git a/devdocs/gcc~13/offsetof.html b/devdocs/gcc~13/offsetof.html deleted file mode 100644 index 110e909e..00000000 --- a/devdocs/gcc~13/offsetof.html +++ /dev/null @@ -1,14 +0,0 @@ -

6.53 Support for offsetof ΒΆ

GCC implements for both C and C++ a syntactic extension to implement the offsetof macro.

primary:
-        "__builtin_offsetof" "(" typename "," offsetof_member_designator ")"
-
-offsetof_member_designator:
-          identifier
-        | offsetof_member_designator "." identifier
-        | offsetof_member_designator "[" expr "]"
-

This extension is sufficient such that

#define offsetof(type, member)  __builtin_offsetof (type, member)
-

is a suitable definition of the offsetof macro. In C++, type may be dependent. In either case, member may consist of a single identifier, or a sequence of member accesses and array references.

-

- © Free Software Foundation
Licensed under the GNU Free Documentation License, Version 1.3.
- https://gcc.gnu.org/onlinedocs/gcc-13.1.0/gcc/Offsetof.html -

-
-- cgit v1.2.3