Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/350#discussion_r192164378
--- Diff: libminifi/src/core/yaml/YamlConfiguration.cpp ---
@@ -19,6 +19,7 @@
#include <memory>
#include <vector>
#include <set>
+#include <regex>
--- End diff --
Not all versions of the compiler support <regex> You'll need to handle the
C and C++ paths. I think GetFile is an example. ---
