We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Application.cpp:433:25: error: ordered comparison between pointer and zero ('void *' and 'int') if( m_raiseHotKeyId >= 0 ) ~~~~~~~~~~~~~~~ ^ ~ 1 error generated.
The actual problem is that (void*)-1 is used as a magic value to denote (an unassigned?) key.
(void*)-1
Application::Application(int& argc, char** argv) :unicorn::Application( "fm.last.Scrobbler", argc, argv ) , m_raiseHotKeyId( (void*)-1 )
I'd guess that itself is an undefined bahavior.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The actual problem is that
(void*)-1
is used as a magic value to denote (an unassigned?) key.I'd guess that itself is an undefined bahavior.
The text was updated successfully, but these errors were encountered: