Chromium Code Reviews| Index: net/http/http_util.cc |
| diff --git a/net/http/http_util.cc b/net/http/http_util.cc |
| index f8d7e9368c09c2ab8ce1f13104c4685726d7165a..dd63538b6e2544332f927b3441edeb19034b06e6 100644 |
| --- a/net/http/http_util.cc |
| +++ b/net/http/http_util.cc |
| @@ -864,13 +864,15 @@ HttpUtil::NameValuePairsIterator::NameValuePairsIterator( |
| value_begin_(end), |
| value_end_(end), |
| value_is_quoted_(false), |
| - values_optional_(optional_values == VALUES_OPTIONAL) {} |
| + values_optional_(optional_values == VALUES_OPTIONAL) { |
| +} |
|
davidben
2015/07/23 00:09:42
Stray change? (I'm guessing a rebase went funny.)
estark
2015/07/23 02:41:22
Done.
|
| HttpUtil::NameValuePairsIterator::NameValuePairsIterator( |
| std::string::const_iterator begin, |
| std::string::const_iterator end, |
| char delimiter) |
| - : NameValuePairsIterator(begin, end, delimiter, VALUES_NOT_OPTIONAL) {} |
| + : NameValuePairsIterator(begin, end, delimiter, VALUES_NOT_OPTIONAL) { |
| +} |
| HttpUtil::NameValuePairsIterator::~NameValuePairsIterator() {} |