Ver código fonte

lolunit: fix an uninitialised member in TestCase.

legacy
Sam Hocevar sam 13 anos atrás
pai
commit
4d99340dfe
1 arquivos alterados com 2 adições e 1 exclusões
  1. +2
    -1
      src/lol/unit.h

+ 2
- 1
src/lol/unit.h Ver arquivo

@@ -81,8 +81,9 @@ public:
static void AddTestCase(TestCase *that, char const *name,
void (FixtureClass::*fun)())
{
that->m_testname = name;
that->m_fun = fun;
that->m_testname = name;
that->m_next = NULL;
GetOrSetTestCase(that);
}
};


Carregando…
Cancelar
Salvar