Issue
When I compile my program with GCC 4.7 I get the following note:
/usr/include/c++/4.7/backward/binders.h:167:5: note: the ABI of passing structure with complex float member has changed in GCC 4.4 here
Is there any way to get rid of it? I tried to google it, but all I find is the GCC source code line that prints the note string.
Solution
Pass the option -Wno-psabi
to GCC.
Answered By - chill