diff --git a/Release/include/cpprest/details/http_helpers.h b/Release/include/cpprest/details/http_helpers.h index 9bed095b0e..9ad60c92a5 100644 --- a/Release/include/cpprest/details/http_helpers.h +++ b/Release/include/cpprest/details/http_helpers.h @@ -24,6 +24,11 @@ namespace http { namespace details { +/// +/// Helper function to get the default HTTP reason phrase for a status code. +/// +utility::string_t get_default_reason_phrase(status_code code); + namespace chunked_encoding { // Transfer-Encoding: chunked support diff --git a/Release/src/http/common/internal_http_helpers.h b/Release/src/http/common/internal_http_helpers.h index 2270f7b955..75d5f1444c 100644 --- a/Release/src/http/common/internal_http_helpers.h +++ b/Release/src/http/common/internal_http_helpers.h @@ -14,11 +14,6 @@ namespace http { namespace details { -/// -/// Helper function to get the default HTTP reason phrase for a status code. -/// -utility::string_t get_default_reason_phrase(status_code code); - // simple helper functions to trim whitespace. template void trim_whitespace(std::basic_string& str)