Github user achristianson commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/158#discussion_r147855769
--- Diff: extensions/http-curl/client/HTTPClient.cpp ---
@@ -204,7 +264,9 @@ const char *HTTPClient::getContentType() {
}
const std::vector<char> &HTTPClient::getResponseBody() {
--- End diff --
c++11+ guarantees std::string bytes are sequential. May not need a
vector<char> in lieu of string.---
