Ver código fonte

base: crash with an assert error if trying to access a read-only map

with a nonexistent key.
legacy
Sam Hocevar sam 11 anos atrás
pai
commit
7181860ee6
1 arquivos alterados com 1 adições e 0 exclusões
  1. +1
    -0
      src/lol/base/map.h

+ 1
- 0
src/lol/base/map.h Ver arquivo

@@ -35,6 +35,7 @@ public:
if (m_array[i].m2 == key)
return m_array[i].m3;
/* XXX: this in an error! */
ASSERT(0, "trying to read a non-existent key in map");
return V();
}



Carregando…
Cancelar
Salvar