소스 검색

lolunit: fix an uninitialised member in TestCase.

legacy
Sam Hocevar sam 14 년 전
부모
커밋
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);
}
};


불러오는 중...
취소
저장