I´m getting this \"Cannot use typeid with -fno-rtti\" when I´m trying to compile my project, I´m using an opencv framework.
I googled the problem but, it seems the errors I
It's telling you the error right in the message: if you use the no-rtti flag on the compiler, then typeid is not going to be available. Just enable RTTI; it's part of C++ after all.