mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
include: remove extraneous const from uv_version()
Fixes the following warning: include/uv.h:236:30: warning: type qualifiers ignored on function return type [-Wignored-qualifiers] UV_EXTERN const unsigned int uv_version(void);
This commit is contained in:
parent
d5f8c1a4d3
commit
3f6122b3f7
@ -233,7 +233,7 @@ typedef enum {
|
||||
* each component, with the patch number stored in the 8 least significant
|
||||
* bits. E.g. for libuv 1.2.3 this would return 0x010203.
|
||||
*/
|
||||
UV_EXTERN const unsigned int uv_version(void);
|
||||
UV_EXTERN unsigned int uv_version(void);
|
||||
|
||||
/*
|
||||
* Returns the libuv version number as a string. For non-release versions
|
||||
|
@ -50,7 +50,7 @@
|
||||
#endif
|
||||
|
||||
|
||||
const unsigned int uv_version(void) {
|
||||
unsigned int uv_version(void) {
|
||||
return UV_VERSION;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user