We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11476df + af812a5 commit 57dcf07Copy full SHA for 57dcf07
arduino-core/src/processing/app/BaseNoGui.java
@@ -417,7 +417,7 @@ static public LibraryList getUserLibs() {
417
* within the header files at the top-level).
418
*/
419
static public String[] headerListFromIncludePath(File path) throws IOException {
420
- String[] list = path.list(new OnlyFilesWithExtension(".h"));
+ String[] list = path.list(new OnlyFilesWithExtension(".h", ".hh", ".hpp"));
421
if (list == null) {
422
throw new IOException();
423
}
0 commit comments