We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8b3bd commit bcd2800Copy full SHA for bcd2800
src/arduino.cc/builder/ctags_runner.go
@@ -74,10 +74,9 @@ func (s *CTagsRunner) Run(ctx *types.Context) error {
74
ctx.CTagsOutput = string(sourceBytes)
75
76
parser := &ctags.CTagsParser{}
77
- ctx.CTagsOfPreprocessedSource = parser.Parse(ctx.CTagsOutput)
78
79
- parser.FixCLinkageTagsDeclarations(ctx.CTagsOfPreprocessedSource)
80
ctx.CTagsOfPreprocessedSource = parser.Parse(ctx.CTagsOutput, ctx.Sketch.MainFile.Name)
+ parser.FixCLinkageTagsDeclarations(ctx.CTagsOfPreprocessedSource)
81
82
protos, line := parser.GeneratePrototypes()
83
if line != -1 {
0 commit comments