Home | History | Annotate | Download | only in unicode
      1 #ifndef UTYPEINFO_H
      2 #define UTYPEINFO_H
      3 
      4 #if defined(_MSC_VER) && _HAS_EXCEPTIONS == 0
      5 // Visual C++ needs the following two lines when RTTI is on with
      6 // exception handling disabled.
      7 #include <exception>
      8 using std::exception;
      9 #endif
     10 #include <typeinfo> // for typeid to work.
     11 
     12 #endif
     13