Skip to content

Commit

Permalink
Merge pull request #3186 from Chris--A/allow_headers
Browse files Browse the repository at this point in the history
Added support for .hh and .hpp libraries
  • Loading branch information
ffissore committed May 19, 2015
2 parents 11476df + af812a5 commit 57dcf07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/BaseNoGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ static public LibraryList getUserLibs() {
* within the header files at the top-level).
*/
static public String[] headerListFromIncludePath(File path) throws IOException {
String[] list = path.list(new OnlyFilesWithExtension(".h"));
String[] list = path.list(new OnlyFilesWithExtension(".h", ".hh", ".hpp"));
if (list == null) {
throw new IOException();
}
Expand Down

0 comments on commit 57dcf07

Please sign in to comment.