From af812a551b11275c58301b6a6276d3cb064bdf28 Mon Sep 17 00:00:00 2001 From: Chris--A Date: Wed, 20 May 2015 01:36:11 +1000 Subject: [PATCH] Added support for .hh and .hpp libraries --- arduino-core/src/processing/app/BaseNoGui.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index 895f6aef1..938c36768 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -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(); }