Explorar el Código

Add explicit typecasts to avoid compiler warning.

Fixes issue #684.

PiperOrigin-RevId: 249531001
main
Chris Mumford hace 5 años
cometido por Victor Costan
padre
commit
ae49533210
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      util/status.cc

+ 2
- 2
util/status.cc Ver fichero

@ -20,8 +20,8 @@ const char* Status::CopyState(const char* state) {
Status::Status(Code code, const Slice& msg, const Slice& msg2) {
assert(code != kOk);
const uint32_t len1 = msg.size();
const uint32_t len2 = msg2.size();
const uint32_t len1 = static_cast<uint32_t>(msg.size());
const uint32_t len2 = static_cast<uint32_t>(msg2.size());
const uint32_t size = len1 + (len2 ? (2 + len2) : 0);
char* result = new char[size + 5];
memcpy(result, &size, sizeof(size));

Cargando…
Cancelar
Guardar