Reactos
at master 20 lines 583 B view raw
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 */ 13type_info::type_info(const type_info &) 14{ 15} 16 17type_info &type_info::operator=(const type_info &) 18{ 19 return *this; 20}