1 /* 2 * PROJECT: ReactOS c++ runtime library 3 * LICENSE: GPLv2+ - See COPYING in the top level directory 4 * PURPOSE: Type info stub implementation 5 * PROGRAMMER: Thomas Faber (thomas.faber@reactos.org) 6 */ 7 8 #include <typeinfo> 9 10 /* These stubs don't need to do anything (those private functions are never 11 * called). They need to be in cpprt, though, in order to have the vtable 12 * and generated destructor thunks available to programs */ 13 type_info::type_info(const type_info &) 14 { 15 } 16 17 type_info &type_info::operator=(const type_info &) 18 { 19 return *this; 20 } 21