Remove manual memory management and move to RAII when possible Examples: `_data` in `ResponseImplementation`. `malloc` and `free` should become `std::vector<uint8_t>`. https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L44 https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L57 https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L77
Remove manual memory management and move to RAII when possible
Examples:
_datainResponseImplementation.mallocandfreeshould becomestd::vector<uint8_t>.https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L44
https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L57
https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L77