Переглянути джерело

lolunit: fix an uninitialised member in TestCase.

legacy
Sam Hocevar sam 13 роки тому
джерело
коміт
4d99340dfe
1 змінених файлів з 2 додано та 1 видалено
  1. +2
    -1
      src/lol/unit.h

+ 2
- 1
src/lol/unit.h Переглянути файл

@@ -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);
}
};


Завантаження…
Відмінити
Зберегти