I am writing an iOS app in which I need to notify something from a c++ file to a .mm file. Someone in this site told me that I should change the extension of my cpp file and treat it as a .mm file with c++ and objective C code inside of it. Will it appear some performance issues in the c++ portion of the code if I change the extension but I don't change its content? The c++ is used for rendering audio, so it should be pretty fast.
Thanks.