mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Cleanup of questionable brevity
This commit is contained in:
parent
dc5e56c2f3
commit
678cc54c44
@ -784,11 +784,11 @@ void _glfwInputMonitorChange(void);
|
||||
* description.
|
||||
* @ingroup event
|
||||
*/
|
||||
void _glfwInputError(int error, const char* format, ...)
|
||||
#ifdef __GNUC__
|
||||
__attribute__((format(printf, 2, 3)))
|
||||
#if defined(__GNUC__)
|
||||
void _glfwInputError(int error, const char* format, ...) __attribute__((format(printf, 2, 3)));
|
||||
#else
|
||||
void _glfwInputError(int error, const char* format, ...);
|
||||
#endif
|
||||
;
|
||||
|
||||
/*! @brief Notifies dropped object over window.
|
||||
* @param[in] window The window that received the event.
|
||||
|
Loading…
Reference in New Issue
Block a user