lint: use reinterpret_cast, not C-style casts

This commit is contained in:
Trevor Norris 2014-01-23 13:01:53 -08:00
parent f78e5df854
commit 74656ca189

View File

@ -208,7 +208,7 @@ void TLSCallbacks::Receive(const FunctionCallbackInfo<Value>& args) {
uv_stream_t* stream = wrap->wrap()->stream();
// Copy given buffer entirely or partiall if handle becomes closed
while (len > 0 && !uv_is_closing((uv_handle_t*) stream)) {
while (len > 0 && !uv_is_closing(reinterpret_cast<uv_handle_t*>(stream))) {
wrap->DoAlloc(reinterpret_cast<uv_handle_t*>(stream), len, &buf);
size_t copy = buf.len > len ? len : buf.len;
memcpy(buf.base, data, copy);