Commit 307e5e8f authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

msvcp90: Update exception RTTI data to reflect it's part of std namespace.

parent fd7f3b34
......@@ -206,7 +206,7 @@ const char* __thiscall MSVCP_exception_what(exception * this)
return this->name ? this->name : "Unknown exception";
}
#ifdef _MSVCIRT
#if _MSVCP_VER >= 80
DEFINE_RTTI_DATA0(exception, 0, ".?AVexception@std@@")
#else
DEFINE_RTTI_DATA0(exception, 0, ".?AVexception@@")
......@@ -409,7 +409,7 @@ const char* __thiscall MSVCP_logic_error_what(logic_error *this)
#endif
}
#ifdef _MSVCIRT
#if _MSVCP_VER >= 80
DEFINE_RTTI_DATA1(logic_error, 0, &exception_rtti_base_descriptor, ".?AVlogic_error@std@@")
#else
DEFINE_RTTI_DATA1(logic_error, 0, &exception_rtti_base_descriptor, ".?AVlogic_error@@")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment