| OLD | NEW |
| 1 // Copyright (C) 2010, International Business Machines | 1 // Copyright (C) 2010, International Business Machines |
| 2 // Corporation and others. All Rights Reserved. | 2 // Corporation and others. All Rights Reserved. |
| 3 // | 3 // |
| 4 // Copyright 2001 and onwards Google Inc. | 4 // Copyright 2001 and onwards Google Inc. |
| 5 // Author: Sanjay Ghemawat | 5 // Author: Sanjay Ghemawat |
| 6 | 6 |
| 7 // This code is a contribution of Google code, and the style used here is | 7 // This code is a contribution of Google code, and the style used here is |
| 8 // a compromise between the original Google code and the ICU coding guidelines. | 8 // a compromise between the original Google code and the ICU coding guidelines. |
| 9 // For example, data types are ICU-ified (size_t,int->int32_t), | 9 // For example, data types are ICU-ified (size_t,int->int32_t), |
| 10 // and API comments doxygen-ified, but function names and behavior are | 10 // and API comments doxygen-ified, but function names and behavior are |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 * @return TRUE if the string data is not equal | 215 * @return TRUE if the string data is not equal |
| 216 * @internal | 216 * @internal |
| 217 */ | 217 */ |
| 218 inline UBool operator!=(const StringPiece& x, const StringPiece& y) { | 218 inline UBool operator!=(const StringPiece& x, const StringPiece& y) { |
| 219 return !(x == y); | 219 return !(x == y); |
| 220 } | 220 } |
| 221 | 221 |
| 222 U_NAMESPACE_END | 222 U_NAMESPACE_END |
| 223 | 223 |
| 224 #endif // __STRINGPIECE_H__ | 224 #endif // __STRINGPIECE_H__ |
| OLD | NEW |