Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af812a5

Browse files
committedMay 19, 2015
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
 

‎arduino-core/src/processing/app/BaseNoGui.java

Lines changed: 1 addition & 1 deletion
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)
Please sign in to comment.