blob: 4265e107e44dd170b6aab158f9b8b613d5e51c2e [file] [log] [blame]
#ifndef UTYPEINFO_H
#define UTYPEINFO_H
#if defined(_MSC_VER) && _HAS_EXCEPTIONS == 0
// Visual C++ needs the following two lines when RTTI is on with
// exception handling disabled.
#include <exception>
using std::exception;
#endif
#include <typeinfo> // for typeid to work.
#endif