mirror of
https://github.com/gwm17/glfw.git
synced 2024-11-23 02:38:52 -05:00
Add GCC printf format check to _glfwInputError
This allows it to print a warning whenever _glfwInputError format specifiers aren't used correctly. Closes #622.
This commit is contained in:
parent
efdbfd3883
commit
dc5e56c2f3
|
@ -784,7 +784,11 @@ void _glfwInputMonitorChange(void);
|
|||
* description.
|
||||
* @ingroup event
|
||||
*/
|
||||
void _glfwInputError(int error, const char* format, ...);
|
||||
void _glfwInputError(int error, const char* format, ...)
|
||||
#ifdef __GNUC__
|
||||
__attribute__((format(printf, 2, 3)))
|
||||
#endif
|
||||
;
|
||||
|
||||
/*! @brief Notifies dropped object over window.
|
||||
* @param[in] window The window that received the event.
|
||||
|
|
Loading…
Reference in New Issue
Block a user