Silence compiler warning about unreachable code.

PiperOrigin-RevId: 449251908
pull/13171/head
Joshua Haberman 3 years ago committed by Copybara-Service
parent 4e2bbc8a3a
commit e4c7f82664
  1. 1
      python/map.c

@ -159,6 +159,7 @@ bool PyUpb_MapContainer_Set(PyUpb_MapContainer* self, upb_Map* map,
case kUpb_MapInsertStatus_OutOfMemory:
return false;
}
return false; // Unreachable, silence compiler warning.
}
int PyUpb_MapContainer_AssignSubscript(PyObject* _self, PyObject* key,

Loading…
Cancel
Save