Github user arpadboda commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/436#discussion_r233910142
--- Diff: nanofi/include/core/cstructs.h ---
@@ -76,6 +80,12 @@ typedef struct {
* ##################################################################
*/
+typedef struct{
+ char *key;
--- End diff --
Can we have this as const char *?
A bit better user experience if you can write something like
```
key_value.key = "some string"
```---
