1
0
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:
Ben Noordhuis 2013-03-26 14:45:53 +01:00
parent d5f8c1a4d3
commit 3f6122b3f7
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -50,7 +50,7 @@
#endif
const unsigned int uv_version(void) {
unsigned int uv_version(void) {
return UV_VERSION;
}