Skip to main content
Graduate II
August 21, 2024
Solved

Unknown warnings

  • August 21, 2024
  • 3 replies
  • 1129 views

Screenshot 2024-08-21 112214.png

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.

    This topic has been closed for replies.
    Best answer by gbm

    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.

    3 replies

    Graduate II
    August 21, 2024

    Please take a screenshot of your warning details

    Super User
    August 21, 2024
    gbmAnswer
    Graduate
    August 21, 2024

    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.

    Super User
    August 21, 2024

    @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.