| Index: third_party/icu/source/common/uchriter.cpp
|
| ===================================================================
|
| --- third_party/icu/source/common/uchriter.cpp (revision 74230)
|
| +++ third_party/icu/source/common/uchriter.cpp (working copy)
|
| @@ -5,7 +5,6 @@
|
| ******************************************************************************
|
| */
|
|
|
| -#include <typeinfo> // for 'typeid' to work
|
|
|
| #include "unicode/uchriter.h"
|
| #include "unicode/ustring.h"
|
| @@ -68,7 +67,7 @@
|
| if (this == &that) {
|
| return TRUE;
|
| }
|
| - if (typeid(*this) != typeid(that)) {
|
| + if (CR_TYPEID(*this) != CR_TYPEID(that)) {
|
| return FALSE;
|
| }
|
|
|
|
|