We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed140f4 commit f7ec17fCopy full SHA for f7ec17f
src/arduino.cc/builder/filter_sketch_source.go
@@ -79,7 +79,7 @@ func parseLineMarker(line string) string {
79
// https://github.com/gcc-mirror/gcc/blob/edd716b6b1caa1a5cb320a8cd7f626f30198e098/gcc/c-family/c-ppoutput.c#L413-L415
80
81
split := strings.SplitN(line, " ", 3)
82
- if len(split) < 2 || split[0] != "#" {
+ if len(split) < 3 || split[0] != "#" {
83
return ""
84
}
85
0 commit comments