forked from catchorg/Catch2
Untypedef some types for clarity when refactoring
This commit is contained in:
@ -36,10 +36,8 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SectionStats stats;
|
SectionStats stats;
|
||||||
using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
|
std::vector<std::shared_ptr<SectionNode>> childSections;
|
||||||
using Assertions = std::vector<AssertionStats>;
|
std::vector<AssertionStats> assertions;
|
||||||
ChildSections childSections;
|
|
||||||
Assertions assertions;
|
|
||||||
std::string stdOut;
|
std::string stdOut;
|
||||||
std::string stdErr;
|
std::string stdErr;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user