We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 11476df commit af812a5Copy full SHA for af812a5
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