File tree Expand file tree Collapse file tree 12 files changed +2629
-8
lines changed Expand file tree Collapse file tree 12 files changed +2629
-8
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ namespace boost {
14
14
namespace network {
15
15
namespace atom {
16
16
feed::feed (const http::client::response &response) {
17
- std::string response_body = body (response);
17
+ std::string response_body = body (response);
18
18
rapidxml::xml_document<> doc;
19
- doc.parse <0 >(const_cast <char *>(response_body.c_str ()));
19
+ doc.parse <0 >(const_cast <char *>(response_body.c_str ()));
20
20
21
21
rapidxml::xml_node<> *feed = doc.first_node (" feed" );
22
22
if (!feed) {
@@ -51,7 +51,7 @@ feed::feed(const http::client::response &response) {
51
51
author_ = atom::author (name->first_node ()->value (), email->first_node ()->value ());
52
52
}
53
53
else if (name) {
54
- author_ = atom::author (name->first_node ()->value ());
54
+ author_ = atom::author (name->first_node ()->value ());
55
55
}
56
56
}
57
57
@@ -89,7 +89,7 @@ feed::feed(const http::client::response &response) {
89
89
entries_.back ().set_content (content->first_node ()->value ());
90
90
}
91
91
92
- entry = entry->next_sibling ();
92
+ entry = entry->next_sibling ();
93
93
}
94
94
}
95
95
} // namespace atom
You can’t perform that action at this time.
0 commit comments