mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-29 15:56:16 -06:00
Update dependencies (#333)
This commit is contained in:
parent
ce22e03f9d
commit
182b4eea73
848 changed files with 377869 additions and 107280 deletions
16
vendor/modernc.org/cc/v3/cc.go
generated
vendored
16
vendor/modernc.org/cc/v3/cc.go
generated
vendored
|
|
@ -509,14 +509,18 @@ type Config struct {
|
|||
|
||||
PragmaHandler func(Pragma, []Token) // Called on pragmas, other than #pragma STDC ..., if non nil
|
||||
|
||||
// SharedFunctionDefinitions collects function definitions having the
|
||||
// same position and definition. This can happen, for example, when a
|
||||
// function is defined in a header file included multiple times. Either
|
||||
// within a single translation unit or across translation units. In the
|
||||
// later case just supply the same SharedFunctionDefinitions in Config
|
||||
// when translating/parsing each translation unit.
|
||||
// SharedFunctionDefinitions collects function definitions having the same
|
||||
// position and definition. This can happen, for example, when a function is
|
||||
// defined in a header file included multiple times. Either within a single
|
||||
// translation unit or across translation units. In the later case just supply
|
||||
// the same SharedFunctionDefinitions in Config when translating/parsing each
|
||||
// translation unit.
|
||||
SharedFunctionDefinitions *SharedFunctionDefinitions
|
||||
|
||||
// IncludeFileHandler, when non nil, is called by the preprocessor for every
|
||||
// successfully included file.
|
||||
IncludeFileHandler func(pos gotoken.Position, includePath string)
|
||||
|
||||
MaxErrors int // 0: default (10), < 0: unlimited, n: n.
|
||||
|
||||
CheckExternInlineFnBodies bool // Translate will consider extern inline function bodies.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue