| OLD | NEW |
| 1 unchanged: | 1 unchanged: |
| 2 --- protobuf-cleaned/src/google/protobuf/stubs/status.cc 2015-12-30 13:21
:46.000000000 -0800 | 2 --- protobuf-cleaned/src/google/protobuf/stubs/status.cc 2015-12-30 13:21
:46.000000000 -0800 |
| 3 +++ protobuf-patched/src/google/protobuf/stubs/status.cc 2016-03-31 13:25
:40.888006485 -0700 | 3 +++ protobuf-patched/src/google/protobuf/stubs/status.cc 2016-03-31 13:25
:40.888006485 -0700 |
| 4 @@ -82,9 +82,9 @@ | 4 @@ -82,9 +82,9 @@ |
| 5 } | 5 } |
| 6 } // namespace error. | 6 } // namespace error. |
| 7 | 7 |
| 8 -const Status Status::OK = Status(); | 8 -const Status Status::OK = Status(); |
| 9 -const Status Status::CANCELLED = Status(error::CANCELLED, ""); | 9 -const Status Status::CANCELLED = Status(error::CANCELLED, ""); |
| 10 -const Status Status::UNKNOWN = Status(error::UNKNOWN, ""); | 10 -const Status Status::UNKNOWN = Status(error::UNKNOWN, ""); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 - static const Status CANCELLED; | 51 - static const Status CANCELLED; |
| 52 - static const Status UNKNOWN; | 52 - static const Status UNKNOWN; |
| 53 + static const StatusPod OK; | 53 + static const StatusPod OK; |
| 54 + static const StatusPod CANCELLED; | 54 + static const StatusPod CANCELLED; |
| 55 + static const StatusPod UNKNOWN; | 55 + static const StatusPod UNKNOWN; |
| 56 | 56 |
| 57 // Accessor | 57 // Accessor |
| 58 bool ok() const { | 58 bool ok() const { |
| 59 only in patch2: | 59 only in patch2: |
| 60 unchanged: | 60 unchanged: |
| 61 --- protobuf-cleaned/src/google/protobuf/stubs/int128.cc 2015-12-30 13:21
:46.000000000 -0800 | |
| 62 +++ protobuf-patched/src/google/protobuf/stubs/int128.cc 2016-03-31 13:25
:40.888006485 -0700 | |
| 63 @@ -31,7 +31,7 @@ | |
| 64 #include <google/protobuf/stubs/int128.h> | |
| 65 | |
| 66 #include <iomanip> | |
| 67 -#include <iostream> // NOLINT(readability/streams) | |
| 68 +#include <ostream> // NOLINT(readability/streams) | |
| 69 #include <sstream> | |
| 70 | |
| 71 namespace google { | |
| OLD | NEW |