Github user achristianson commented on the issue:
https://github.com/apache/nifi-minifi-cpp/pull/315
@apiri Confirmed compiler version issue, from Howard Hinnant, author of
date:
"I'm not positive to tell you the truth, but based on this bug report:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60396 my best guess is gcc-5 and
forward, at least for date::parse. The parse function is implemented in terms
of the C++11 std::time_get::get() function(s) proposed by this 2007 paper:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2321.html. There is no
workaround, except to manually implement your own parsing. Sorry."
https://gitter.im/HowardHinnant/date/archives/2016/08/31
Will add a version restriction.
---