Kaydet (Commit) 78fc2048 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

WaE unused variable

Change-Id: I36a51ad53e1992a32c59defa8847555caccd035f
üst b4894820
......@@ -191,8 +191,10 @@ void insert(
std::map< rtl::OUString, Item > * map)
{
assert(map != 0);
bool b = map->insert(std::make_pair(name, item)).second;
assert(b);
if(!map->insert(std::make_pair(name, item)).second)
{
assert(false);
}
}
typereg::Reader getReader(RegistryKey & key, std::vector< char > * buffer) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment