Skip to content

Commit ffa0432

Browse files
smilesa-maurice
authored andcommitted
Fixed Windows build of www_form_url_encoded.
PiperOrigin-RevId: 248638848
1 parent ea86890 commit ffa0432

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/rest/www_form_url_encoded.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ class WwwFormUrlEncoded {
3131
// Form item.
3232
struct Item {
3333
Item() {}
34-
Item(const string& key_, const string& value_) : key(key_), value(value_) {}
34+
Item(const std::string& key_, const std::string& value_)
35+
: key(key_), value(value_) {}
3536

3637
std::string key;
3738
std::string value;

0 commit comments

Comments
 (0)