include: update outdated code comment (#4037)

I believe it's fair to say at this point that these functions are not
going to be removed in v0.12. They are still deprecated though.
This commit is contained in:
Ben Noordhuis 2023-06-04 22:41:58 +02:00 committed by GitHub
parent 65c1402ee6
commit e8ec610f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -289,13 +289,13 @@ UV_EXTERN int uv_loop_init(uv_loop_t* loop);
UV_EXTERN int uv_loop_close(uv_loop_t* loop);
/*
* NOTE:
* This function is DEPRECATED (to be removed after 0.12), users should
* This function is DEPRECATED, users should
* allocate the loop manually and use uv_loop_init instead.
*/
UV_EXTERN uv_loop_t* uv_loop_new(void);
/*
* NOTE:
* This function is DEPRECATED (to be removed after 0.12). Users should use
* This function is DEPRECATED. Users should use
* uv_loop_close and free the memory manually instead.
*/
UV_EXTERN void uv_loop_delete(uv_loop_t*);