diff options
Diffstat (limited to 'src/HTTP/NameValueParser.cpp')
-rw-r--r-- | src/HTTP/NameValueParser.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/HTTP/NameValueParser.cpp b/src/HTTP/NameValueParser.cpp index d62d05929..4273eec40 100644 --- a/src/HTTP/NameValueParser.cpp +++ b/src/HTTP/NameValueParser.cpp @@ -72,8 +72,7 @@ public: // cNameValueParser: cNameValueParser::cNameValueParser(bool a_AllowsKeyOnly) : - m_State(psKeySpace), - m_AllowsKeyOnly(a_AllowsKeyOnly) + m_State(psKeySpace), m_AllowsKeyOnly(a_AllowsKeyOnly) { } @@ -82,8 +81,7 @@ cNameValueParser::cNameValueParser(bool a_AllowsKeyOnly) : cNameValueParser::cNameValueParser(const char * a_Data, size_t a_Size, bool a_AllowsKeyOnly) : - m_State(psKeySpace), - m_AllowsKeyOnly(a_AllowsKeyOnly) + m_State(psKeySpace), m_AllowsKeyOnly(a_AllowsKeyOnly) { Parse(a_Data, a_Size); } @@ -405,7 +403,3 @@ bool cNameValueParser::Finish(void) } UNREACHABLE("Unsupported name value parser state"); } - - - - |