Skip to content

Commit af812a5

Browse files
committed
Added support for .hh and .hpp libraries
1 parent 11476df commit af812a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino-core/src/processing/app/BaseNoGui.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ static public LibraryList getUserLibs() {
417417
* within the header files at the top-level).
418418
*/
419419
static public String[] headerListFromIncludePath(File path) throws IOException {
420-
String[] list = path.list(new OnlyFilesWithExtension(".h"));
420+
String[] list = path.list(new OnlyFilesWithExtension(".h", ".hh", ".hpp"));
421421
if (list == null) {
422422
throw new IOException();
423423
}

0 commit comments

Comments
 (0)