mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[NTOSKRNL] - Fix MSVC build
[INCLUDE/C++] - Fix some typos in (obviously never used) typeinfo header [MSVCRTEX] - Use _DLL instead of _M_CEE_PURE svn path=/trunk/; revision=53933
This commit is contained in:
parent
95cce1bb8a
commit
741495c584
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ namespace std
|
|||
class type_info {
|
||||
public:
|
||||
virtual ~type_info();
|
||||
bool before (const type_info& rhs) const;
|
||||
bool before (const type_info& arg) const
|
||||
{ return __name < __arg.__name; }
|
||||
bool operator==(const type_info& __arg) const
|
||||
{ return __name == __arg.__name; }
|
||||
|
|
|
@ -62,7 +62,7 @@ else()
|
|||
endif()
|
||||
|
||||
add_library(msvcrtex ${MSVCRTEX_SOURCE})
|
||||
add_target_compile_definitions(msvcrtex _M_CEE_PURE)
|
||||
add_target_compile_definitions(msvcrtex _DLL)
|
||||
set_source_files_properties(startup/crtdll.c PROPERTIES COMPILE_DEFINITIONS CRTDLL)
|
||||
|
||||
if(NOT MSVC)
|
||||
|
|
|
@ -1289,7 +1289,7 @@ KiIsNpxErrataPresent(VOID)
|
|||
fdiv Value2
|
||||
fmul Value2
|
||||
fld Value1
|
||||
fsubp
|
||||
fsubp st(1), st(0)
|
||||
fistp ErrataPresent
|
||||
};
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue