Controls placing vtable and RTTI in a ready-only section.
#pragma read_only_vtable_RTTI on | off | reset
If you enable this pragma, compiler places vtable and RTTI in a read-only section (.rodata/.sdata2), allowing the linker to place this object code in a ROM area instead of RAM. If you disable this pragma, the compiler places vtable and RTTI in an object code section that is readable and writable (.data/.sdata).
This pragma does not correspond to any panel setting. By default, this pragma is disabled.