bug 1371: llvm complains about redeclaration as struct
authorMathieu Lacage <mathieu.lacage@gmail.com>
Fri, 24 Feb 2012 03:39:06 -0500
changeset 7744 0ee272dab97b
parent 7743 c488dc0ef76c
child 7745 fcf4778c9b16
bug 1371: llvm complains about redeclaration as struct
src/core/model/test.cc
--- a/src/core/model/test.cc	Fri Feb 24 03:36:58 2012 -0500
+++ b/src/core/model/test.cc	Fri Feb 24 03:39:06 2012 -0500
@@ -223,7 +223,7 @@
   m_result->failure.push_back (TestCaseFailure (cond, actual, limit,
                                                 message, file, line));
   // set childrenFailed flag on parents.
-  struct TestCase *current = m_parent;
+  TestCase *current = m_parent;
   while (current != 0)
     {
       current->m_result->childrenFailed = true;