We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a906f23 + 7f061cc commit 0ec9431Copy full SHA for 0ec9431
arduino-core/src/processing/app/SketchData.java
@@ -11,7 +11,7 @@
11
public class SketchData {
12
13
public static final List<String> SKETCH_EXTENSIONS = Arrays.asList("ino", "pde");
14
- public static final List<String> OTHER_ALLOWED_EXTENSIONS = Arrays.asList("c", "cpp", "h", "s");
+ public static final List<String> OTHER_ALLOWED_EXTENSIONS = Arrays.asList("c", "cpp", "h", "hh", "hpp", "s");
15
public static final List<String> EXTENSIONS = new LinkedList<String>(FluentIterable.from(SKETCH_EXTENSIONS).append(OTHER_ALLOWED_EXTENSIONS).toList());
16
17
/** main pde file for this sketch. */
0 commit comments