Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 13.0.1
Description
When creating a definition that uses the keyword "emit", I get a message that the word "emit" is missing.
#define S1(signal) emit signal(); S1(this->signalAddSongModelLoaded) // problem this->signalAddSongModelLoaded(); // expected problem emit this->signalAddSongModelLoaded(); // expected no problem #define S2 emit this->signalAddSongModelLoaded(); S2 // problem