We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cad689 commit 11efa53Copy full SHA for 11efa53
src/arduino.cc/builder/ctags_to_prototypes.go
@@ -108,6 +108,9 @@ func firstFunctionAtLine(tags []*types.CTag) int {
108
func toPrototypes(tags []*types.CTag) []*types.Prototype {
109
prototypes := []*types.Prototype{}
110
for _, tag := range tags {
111
+ if strings.TrimSpace(tag.Prototype) == "" {
112
+ continue
113
+ }
114
if !tag.SkipMe {
115
prototype := &types.Prototype{
116
FunctionName: tag.FunctionName,
0 commit comments