Remove unused Multipart functions

This commit is contained in:
Alex Hultman
2021-03-04 08:31:29 +01:00
committed by GitHub
parent b7202e71ee
commit 0b97cc72d3
-16
View File
@@ -39,21 +39,6 @@ namespace uWS {
remainingLine = line; remainingLine = line;
} }
/* Common parameter */
std::string_view getName() {
return name;
}
/* Common parameter */
std::string_view getFilename() {
return filename;
}
/* Parses common values */
void parseCommonValues() {
}
/* Returns next key/value where value can simply be empty. /* Returns next key/value where value can simply be empty.
* If key (first) is empty then we are at the end */ * If key (first) is empty then we are at the end */
std::pair<std::string_view, std::string_view> getKeyValue() { std::pair<std::string_view, std::string_view> getKeyValue() {
@@ -76,7 +61,6 @@ namespace uWS {
private: private:
std::string_view remainingLine; std::string_view remainingLine;
std::string_view filename, name;
/* Consumes a token from the line. Will "unquote" strings */ /* Consumes a token from the line. Will "unquote" strings */
std::string_view getToken() { std::string_view getToken() {