Chromium Code Reviews| Index: net/base/io_buffer.h |
| =================================================================== |
| --- net/base/io_buffer.h (revision 179669) |
| +++ net/base/io_buffer.h (working copy) |
| @@ -115,7 +115,7 @@ |
| public: |
| explicit StringIOBuffer(const std::string& s); |
| - int size() const { return string_data_.size(); } |
| + int size() const { return static_cast<int>(string_data_.size()); } |
|
Ryan Hamilton
2013/01/30 20:33:53
You're way more familiar with the 64 bit safe-ific
jschuh
2013/01/30 20:54:14
I *really* *really* wanted to, but it bleeds throu
|
| private: |
| virtual ~StringIOBuffer(); |