Add #include cstring

This commit is contained in:
Adam Sunderland 2016-10-31 12:21:56 -05:00
parent 19e1c06a68
commit b4940a6e91

View File

@ -5,6 +5,7 @@
#include <algorithm>
#include <cerrno>
#include <cstddef>
#include <cstring>
#include <stdexcept>
#include <string>
@ -89,7 +90,7 @@ inline char decodePercentEncodedChar(const std::string &digits)
* turning '~01' first into '~1' and then into '/', which would be
* incorrect (the string '~01' correctly becomes '~1' after
* transformation).
*
*
* @param begin iterator pointing to beginning of a token
* @param end iterator pointing to one character past the end of the token
*