2024-08-21 12:24 AM
I am getting the above warning! I am unable to find what is causing the issue. If I comment the line number 5442, then no warnings or no errors. Help me resolve this issue.
2024-08-21 12:46 AM
Please take a screenshot of your warning details
2024-08-21 01:14 AM
The warning text says it explicitly - just read it. You have two different #defines of the same symbol. One is unconditional, the other one conditional - make them both conditional/exclusive using #ifdef -- #else -- #endif.
2024-08-21 02:16 AM
@Passerby wrote:Please take a screenshot of your warning details
No, please don't use screenshots - copy and paste as text, as for code:
2024-08-21 05:35 AM
@gbm gave you the answer, but also note than you can hover over the line in question to read what the warning message is, or view the output of the Console tab to see the message. You don't have to be in the dark.