Fixed "statement is unreachable" warning on IAR (issue #1233)

This commit is contained in:
Benoit Blanchon
2020-04-06 18:19:32 +02:00
parent fc9e609ab5
commit 4627f851ca
2 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,7 @@ HEAD
---- ----
* Fixed "maybe-uninitialized" warning (issue #1217) * Fixed "maybe-uninitialized" warning (issue #1217)
* Fixed "statement is unreachable" warning on IAR (issue #1233)
v6.15.0 (2020-03-22) v6.15.0 (2020-03-22)
------- -------

View File

@ -24,7 +24,6 @@ inline bool slotSetKey(VariantSlot* var, TAdaptedString key, MemoryPool* pool,
} else { } else {
return slotSetKey(var, key, pool, storage_policy::store_by_copy()); return slotSetKey(var, key, pool, storage_policy::store_by_copy());
} }
return true;
} }
template <typename TAdaptedString> template <typename TAdaptedString>