When can compiling c++ without RTTI cause problems?

后端 未结 2 722
抹茶落季
抹茶落季 2021-01-31 01:44

I\'m using gcc\'s -fno-rtti flag to compile my C++ without runtime type information.

Assuming I\'m not using dynamic_cast<> or type

2条回答
  •  梦如初夏
    2021-01-31 01:59

    We have used gcc without rtti for 5 years with no specific problems (not using dynamic_cast or typeid)

提交回复
热议问题