You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by phrocker <gi...@git.apache.org> on 2018/05/31 16:45:40 UTC

[GitHub] nifi-minifi-cpp pull request #350: MINIFICPP-465 Implemented regex validatio...

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. 


---