mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Merge pull request #3186 from Chris--A/allow_headers
Added support for .hh and .hpp libraries
This commit is contained in:
commit
57dcf07244
@ -417,7 +417,7 @@ public class BaseNoGui {
|
||||
* 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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user