mirror of
https://github.com/ziglang/zig.git
synced 2026-01-29 18:55:29 +00:00
clang.zig cleanup #4: move block around
This commit is contained in:
parent
5df2e791c2
commit
7f1dd05fa7
@ -669,6 +669,15 @@ pub const ZigClangCallingConv = extern enum {
|
||||
AArch64VectorCall,
|
||||
};
|
||||
|
||||
pub const ZigClangStorageClass = extern enum {
|
||||
None,
|
||||
Extern,
|
||||
Static,
|
||||
PrivateExtern,
|
||||
Auto,
|
||||
Register,
|
||||
};
|
||||
|
||||
pub extern fn ZigClangSourceManager_getSpellingLoc(arg0: ?*const struct_ZigClangSourceManager, Loc: struct_ZigClangSourceLocation) struct_ZigClangSourceLocation;
|
||||
pub extern fn ZigClangSourceManager_getFilename(self: *const struct_ZigClangSourceManager, SpellingLoc: struct_ZigClangSourceLocation) ?[*]const u8;
|
||||
pub extern fn ZigClangSourceManager_getSpellingLineNumber(arg0: ?*const struct_ZigClangSourceManager, Loc: struct_ZigClangSourceLocation) c_uint;
|
||||
@ -853,15 +862,6 @@ pub const struct_ZigClangQualType = extern struct {
|
||||
ptr: ?*c_void,
|
||||
};
|
||||
|
||||
pub const ZigClangStorageClass = extern enum {
|
||||
None,
|
||||
Extern,
|
||||
Static,
|
||||
PrivateExtern,
|
||||
Auto,
|
||||
Register,
|
||||
};
|
||||
|
||||
pub const ZigClangCompoundStmt_const_body_iterator = [*c]const *struct_ZigClangStmt;
|
||||
|
||||
pub extern fn ZigClangCompoundStmt_body_begin(self: *const ZigClangCompoundStmt) ZigClangCompoundStmt_const_body_iterator;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user