Index: net/der/input.h |
diff --git a/net/der/input.h b/net/der/input.h |
index 3772d0df927f9b93b2587802ebbddf0dfcfa870d..e909c414578cf17153f9bbc7e5ab024534c49de8 100644 |
--- a/net/der/input.h |
+++ b/net/der/input.h |
@@ -56,6 +56,7 @@ class NET_EXPORT_PRIVATE Input { |
// Return true if the Input's data and |other|'s data are byte-wise equal. |
bool Equals(const Input& other) const; |
eroman
2016/02/03 22:54:46
Should delete Equals if introducing operator== so
svaldez
2016/02/04 19:03:25
Splitting out into separate CL.
|
+ bool operator==(const Input& other) const; |
// Returns a pointer to the Input's data. This method is marked as "unsafe" |
// because access to the Input's data should be done through ByteReader |