Index: net/tools/balsa/http_message_constants.cc |
diff --git a/net/tools/balsa/http_message_constants.cc b/net/tools/balsa/http_message_constants.cc |
index 96a9725201ee690c403b1c3ff9f24e09c8854697..59716f1254b095c7a243216a49881690f1dbb031 100644 |
--- a/net/tools/balsa/http_message_constants.cc |
+++ b/net/tools/balsa/http_message_constants.cc |
@@ -95,52 +95,13 @@ const char* get_http_status_message(int status_message) { |
//////////////////////////////////////////////////////////////////////////////// |
const int http_status_codes[] = { |
- 100, |
- 101, |
- 200, |
- 201, |
- 202, |
- 203, |
- 204, |
- 205, |
- 206, |
- 300, |
- 301, |
- 302, |
- 303, |
- 304, |
- 305, |
- 307, |
- 400, |
- 401, |
- 402, |
- 403, |
- 404, |
- 405, |
- 406, |
- 407, |
- 408, |
- 409, |
- 410, |
- 411, |
- 412, |
- 413, |
- 414, |
- 415, |
- 416, |
- 417, |
- 500, |
- 501, |
- 502, |
- 503, |
- 504, |
- 505 |
-}; |
+ 100, 101, 200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, |
+ 305, 307, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, |
+ 412, 413, 414, 415, 416, 417, 500, 501, 502, 503, 504, 505}; |
//////////////////////////////////////////////////////////////////////////////// |
-const int http_status_code_count = sizeof(http_status_codes) / |
- sizeof(http_status_codes[0]); |
+const int http_status_code_count = |
+ sizeof(http_status_codes) / sizeof(http_status_codes[0]); |
} // namespace net |
- |