leizil commented on issue #17116:
URL: https://github.com/apache/tvm/issues/17116#issuecomment-2370736202
you can change "void" to "size_t" and "return size" in changed function.
```C++
virtual void write(const void* ptr,size_t size)
{ ....}
size_t write(const void * ptr,size_t size)
{
....
return size;
}
```
I find these files needed fix:
- src/runtime/file_utils.h
- src/support/base64.h
- src/runtime/rpc/rpc_point.cc(rpc_socket_impl.cc)
- src/support/pipe.h
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]