commit | e4c7f826641310c82a0ce05d71f9db1260d21fd9 | [log] [tgz] |
---|---|---|
author | Joshua Haberman <haberman@google.com> | Tue May 17 10:15:21 2022 -0700 |
committer | Copybara-Service <copybara-worker@google.com> | Tue May 17 10:15:49 2022 -0700 |
tree | 886e37f75e201b3e4c215bf462d5843a7f61ddb9 | |
parent | 4e2bbc8a3a8fcbb2546564190211d4c93bf586cc [diff] [blame] |
Silence compiler warning about unreachable code. PiperOrigin-RevId: 449251908
diff --git a/python/map.c b/python/map.c index 482e62f..31799a3 100644 --- a/python/map.c +++ b/python/map.c
@@ -159,6 +159,7 @@ case kUpb_MapInsertStatus_OutOfMemory: return false; } + return false; // Unreachable, silence compiler warning. } int PyUpb_MapContainer_AssignSubscript(PyObject* _self, PyObject* key,